diff --git a/.gitignore b/.gitignore index 09cd281f..6e4a1094 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,5 @@ bin/ # fabric run/ + +src/main/generated/.cache \ No newline at end of file diff --git a/build.gradle b/build.gradle index 7bedeaa0..70fab2ad 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '1.2-SNAPSHOT' + id 'fabric-loom' version '1.6-SNAPSHOT' id 'maven-publish' } @@ -66,7 +66,7 @@ processResources { tasks.withType(JavaCompile).configureEach { // Minecraft 1.18 (1.18-pre2) upwards uses Java 17. - it.options.release = 17 + it.options.release = 21 } java { @@ -75,8 +75,8 @@ java { // If you remove this line, sources will not be generated. withSourcesJar() - sourceCompatibility = JavaVersion.VERSION_17 - targetCompatibility = JavaVersion.VERSION_17 + sourceCompatibility = JavaVersion.VERSION_21 + targetCompatibility = JavaVersion.VERSION_21 } jar { diff --git a/gradle.properties b/gradle.properties index f70b5e40..e210860e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,14 +3,14 @@ org.gradle.jvmargs=-Xmx2G # Fabric Properties # check these on https://fabricmc.net/develop - minecraft_version=1.20.1 - yarn_mappings=1.20.1+build.5 - loader_version=0.14.21 + minecraft_version=1.21 + yarn_mappings=1.21+build.2 + loader_version=0.15.11 # Mod Properties - mod_version = 3.1.0 + mod_version = 3.2.0 maven_group = com.ninni archives_base_name = twigs # Dependencies - fabric_version=0.84.0+1.20.1 + fabric_version=0.100.7+1.21 diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 41d9927a..c1962a79 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 37aef8d3..20db9ad5 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip networkTimeout=10000 zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index 1b6c7873..aeb74cbb 100644 --- a/gradlew +++ b/gradlew @@ -55,7 +55,7 @@ # 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 +# https://github.com/gradle/gradle/blob/HEAD/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/. @@ -80,13 +80,10 @@ do esac done -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit - -APP_NAME="Gradle" +# This is normally unused +# shellcheck disable=SC2034 APP_BASE_NAME=${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"' +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -143,12 +140,16 @@ fi if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then case $MAX_FD in #( max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC3045 MAX_FD=$( ulimit -H -n ) || warn "Could not query maximum file descriptor limit" esac case $MAX_FD in #( '' | soft) :;; #( *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC3045 ulimit -n "$MAX_FD" || warn "Could not set maximum file descriptor limit to $MAX_FD" esac @@ -193,6 +194,10 @@ if "$cygwin" || "$msys" ; then done fi + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + # Collect all arguments for the java command; # * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of # shell script including quotes and variable substitutions, so put them in @@ -205,6 +210,12 @@ set -- \ org.gradle.wrapper.GradleWrapperMain \ "$@" +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + # Use "xargs" to parse quoted args. # # With -n1 it outputs one arg per line, with the quotes and backslashes removed. diff --git a/gradlew.bat b/gradlew.bat index 107acd32..93e3f59f 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -14,7 +14,7 @@ @rem limitations under the License. @rem -@if "%DEBUG%" == "" @echo off +@if "%DEBUG%"=="" @echo off @rem ########################################################################## @rem @rem Gradle startup script for Windows @@ -25,7 +25,8 @@ if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @@ -40,7 +41,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute +if %ERRORLEVEL% equ 0 goto execute echo. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. @@ -75,13 +76,15 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar :end @rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd +if %ERRORLEVEL% equ 0 goto mainEnd :fail rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% :mainEnd if "%OS%"=="Windows_NT" endlocal diff --git a/src/main/generated/.cache/992030af1166d80cd522100e1ae5b945fa70818d b/src/main/generated/.cache/992030af1166d80cd522100e1ae5b945fa70818d deleted file mode 100644 index b8da7a94..00000000 --- a/src/main/generated/.cache/992030af1166d80cd522100e1ae5b945fa70818d +++ /dev/null @@ -1,11 +0,0 @@ -// 1.19.4 2023-05-09T22:28:07.0037359 Twigs/worldgen/placed_feature -7966b3b727cfa0de202323e424e20c9cd8177810 data\twigs\worldgen\placed_feature\silt_strip.json -416b1da2ee6958bc96532b55e72eded59acd9079 data\twigs\worldgen\placed_feature\ore_schist_upper.json -0528cbb063be769c4a382a43388d1aa40da7b75d data\twigs\worldgen\placed_feature\ore_rhyolite.json -48328031204dd7f49f0a29988150b73975e1b6c1 data\twigs\worldgen\placed_feature\azalea_flowers.json -ff4b07b0a6d9862b29b8a10d3b497b3dff57ea21 data\twigs\worldgen\placed_feature\patch_twig.json -05e85ad54f2150a55d812b76bd44c7556dc0f008 data\twigs\worldgen\placed_feature\patch_seashell_land.json -14430c00f5817666f24c04059517e9f722121399 data\twigs\worldgen\placed_feature\ore_schist_lower.json -17fc2122046e18844cbf437cafe1638aa51e55a2 data\twigs\worldgen\placed_feature\ore_bloodstone.json -221d679bce3faa8159775ef7b679a6e32649751c data\twigs\worldgen\placed_feature\patch_seashell_water.json -89578c7b44ecbe5c4154939e6fae4eee7ad37f89 data\twigs\worldgen\placed_feature\patch_pebble.json diff --git a/src/main/generated/.cache/f418228a60fef977eb19c4adca647c6a9fa60d17 b/src/main/generated/.cache/f418228a60fef977eb19c4adca647c6a9fa60d17 deleted file mode 100644 index e27ec4ae..00000000 --- a/src/main/generated/.cache/f418228a60fef977eb19c4adca647c6a9fa60d17 +++ /dev/null @@ -1,9 +0,0 @@ -// 1.19.4 2023-05-09T22:28:07.0067363 Twigs/worldgen/configured_feature -9f80fd766a043eb5ae59dc2d7012ee883054ce7d data\twigs\worldgen\configured_feature\silt_strip.json -534ea1ec9b2782a5850075ceeefd6b5c1f16a07d data\twigs\worldgen\configured_feature\ore_rhyolite.json -e308fd61a81759900fdb310b07ec8f0c2e02803b data\twigs\worldgen\configured_feature\ore_bloodstone.json -09e0201edab89fd7fba389b7cca09abd471581ce data\twigs\worldgen\configured_feature\azalea_flowers.json -71bf58def1df05fc6c46740c38d31c223de651aa data\twigs\worldgen\configured_feature\patch_twig.json -7e91cfef041f4cfc6bcf3bae42bb90be031ebda3 data\twigs\worldgen\configured_feature\patch_pebble.json -81c6417bd09b9276f7887820a725f23c730c9b52 data\twigs\worldgen\configured_feature\ore_schist.json -d90ee40d61f84ef43e150f35251693ba2ca6418b data\twigs\worldgen\configured_feature\patch_seashell.json diff --git a/src/main/resources/data/minecraft/tags/blocks/crystal_sound_blocks.json b/src/main/generated/data/minecraft/tags/block/crystal_sound_blocks.json similarity index 79% rename from src/main/resources/data/minecraft/tags/blocks/crystal_sound_blocks.json rename to src/main/generated/data/minecraft/tags/block/crystal_sound_blocks.json index cd38477b..20707156 100644 --- a/src/main/resources/data/minecraft/tags/blocks/crystal_sound_blocks.json +++ b/src/main/generated/data/minecraft/tags/block/crystal_sound_blocks.json @@ -1,5 +1,4 @@ { - "replace": false, "values": [ "twigs:polished_amethyst", "twigs:cut_amethyst" diff --git a/src/main/generated/data/minecraft/tags/block/flower_pots.json b/src/main/generated/data/minecraft/tags/block/flower_pots.json new file mode 100644 index 00000000..1ccdba81 --- /dev/null +++ b/src/main/generated/data/minecraft/tags/block/flower_pots.json @@ -0,0 +1,5 @@ +{ + "values": [ + "twigs:potted_azalea_flowers" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/inside_step_sound_blocks.json b/src/main/generated/data/minecraft/tags/block/inside_step_sound_blocks.json similarity index 86% rename from src/main/resources/data/minecraft/tags/blocks/inside_step_sound_blocks.json rename to src/main/generated/data/minecraft/tags/block/inside_step_sound_blocks.json index 869adca5..19d7058b 100644 --- a/src/main/resources/data/minecraft/tags/blocks/inside_step_sound_blocks.json +++ b/src/main/generated/data/minecraft/tags/block/inside_step_sound_blocks.json @@ -1,5 +1,4 @@ { - "replace": false, "values": [ "twigs:petrified_lichen", "twigs:brick_trail", diff --git a/src/main/resources/data/minecraft/tags/blocks/mineable/axe.json b/src/main/generated/data/minecraft/tags/block/mineable/axe.json similarity index 83% rename from src/main/resources/data/minecraft/tags/blocks/mineable/axe.json rename to src/main/generated/data/minecraft/tags/block/mineable/axe.json index 7916b1d3..51670162 100644 --- a/src/main/resources/data/minecraft/tags/blocks/mineable/axe.json +++ b/src/main/generated/data/minecraft/tags/block/mineable/axe.json @@ -1,5 +1,4 @@ { - "replace": false, "values": [ "#twigs:tables", "twigs:crimson_shroomlamp", diff --git a/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json b/src/main/generated/data/minecraft/tags/block/mineable/pickaxe.json similarity index 97% rename from src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json rename to src/main/generated/data/minecraft/tags/block/mineable/pickaxe.json index 32f3a6a0..b59e721f 100644 --- a/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json +++ b/src/main/generated/data/minecraft/tags/block/mineable/pickaxe.json @@ -1,5 +1,4 @@ { - "replace": false, "values": [ "twigs:lamp", "twigs:soul_lamp", @@ -35,9 +34,6 @@ "twigs:weeping_polished_blackstone_brick_stairs", "twigs:weeping_polished_blackstone_brick_slab", "twigs:weeping_polished_blackstone_brick_wall", - "twigs:tuff_stairs", - "twigs:tuff_slab", - "twigs:tuff_wall", "twigs:polished_tuff", "twigs:polished_tuff_stairs", "twigs:polished_tuff_slab", diff --git a/src/main/resources/data/minecraft/tags/blocks/mineable/shovel.json b/src/main/generated/data/minecraft/tags/block/mineable/shovel.json similarity index 75% rename from src/main/resources/data/minecraft/tags/blocks/mineable/shovel.json rename to src/main/generated/data/minecraft/tags/block/mineable/shovel.json index 7128389b..62b3cb06 100644 --- a/src/main/resources/data/minecraft/tags/blocks/mineable/shovel.json +++ b/src/main/generated/data/minecraft/tags/block/mineable/shovel.json @@ -1,5 +1,4 @@ { - "replace": false, "values": [ "twigs:rocky_dirt", "twigs:silt" diff --git a/src/main/generated/data/minecraft/tags/block/piglin_repellents.json b/src/main/generated/data/minecraft/tags/block/piglin_repellents.json new file mode 100644 index 00000000..917aee04 --- /dev/null +++ b/src/main/generated/data/minecraft/tags/block/piglin_repellents.json @@ -0,0 +1,5 @@ +{ + "values": [ + "twigs:soul_lamp" + ] +} \ No newline at end of file diff --git a/src/main/generated/data/minecraft/tags/block/replaceable.json b/src/main/generated/data/minecraft/tags/block/replaceable.json new file mode 100644 index 00000000..d87da92f --- /dev/null +++ b/src/main/generated/data/minecraft/tags/block/replaceable.json @@ -0,0 +1,6 @@ +{ + "values": [ + "twigs:azalea_flowers", + "twigs:petrified_lichen" + ] +} \ No newline at end of file diff --git a/src/main/generated/data/minecraft/tags/block/replaceable_by_trees.json b/src/main/generated/data/minecraft/tags/block/replaceable_by_trees.json new file mode 100644 index 00000000..d87da92f --- /dev/null +++ b/src/main/generated/data/minecraft/tags/block/replaceable_by_trees.json @@ -0,0 +1,6 @@ +{ + "values": [ + "twigs:azalea_flowers", + "twigs:petrified_lichen" + ] +} \ No newline at end of file diff --git a/src/main/generated/data/minecraft/tags/block/slabs.json b/src/main/generated/data/minecraft/tags/block/slabs.json new file mode 100644 index 00000000..8537433e --- /dev/null +++ b/src/main/generated/data/minecraft/tags/block/slabs.json @@ -0,0 +1,45 @@ +{ + "values": [ + "twigs:bamboo_thatch_slab", + "twigs:smooth_basalt_brick_slab", + "twigs:mossy_brick_slab", + "twigs:gravel_brick_slab", + "twigs:smooth_stone_brick_slab", + "twigs:cobblestone_brick_slab", + "twigs:mossy_cobblestone_brick_slab", + "twigs:twisting_polished_blackstone_brick_slab", + "twigs:weeping_polished_blackstone_brick_slab", + "twigs:polished_tuff_slab", + "twigs:polished_tuff_brick_slab", + "twigs:calcite_slab", + "twigs:polished_calcite_slab", + "twigs:polished_calcite_brick_slab", + "twigs:schist_slab", + "twigs:polished_schist_slab", + "twigs:polished_schist_brick_slab", + "twigs:rhyolite_slab", + "twigs:polished_rhyolite_slab", + "twigs:polished_rhyolite_brick_slab", + "twigs:bloodstone_slab", + "twigs:polished_bloodstone_slab", + "twigs:polished_bloodstone_brick_slab", + "twigs:silt_brick_slab", + "twigs:silt_shingle_slab", + "twigs:white_silt_shingle_slab", + "twigs:orange_silt_shingle_slab", + "twigs:magenta_silt_shingle_slab", + "twigs:light_blue_silt_shingle_slab", + "twigs:yellow_silt_shingle_slab", + "twigs:lime_silt_shingle_slab", + "twigs:pink_silt_shingle_slab", + "twigs:gray_silt_shingle_slab", + "twigs:light_gray_silt_shingle_slab", + "twigs:cyan_silt_shingle_slab", + "twigs:purple_silt_shingle_slab", + "twigs:blue_silt_shingle_slab", + "twigs:brown_silt_shingle_slab", + "twigs:green_silt_shingle_slab", + "twigs:red_silt_shingle_slab", + "twigs:black_silt_shingle_slab" + ] +} \ No newline at end of file diff --git a/src/main/generated/data/minecraft/tags/block/small_flowers.json b/src/main/generated/data/minecraft/tags/block/small_flowers.json new file mode 100644 index 00000000..1223579c --- /dev/null +++ b/src/main/generated/data/minecraft/tags/block/small_flowers.json @@ -0,0 +1,5 @@ +{ + "values": [ + "twigs:azalea_flowers" + ] +} \ No newline at end of file diff --git a/src/main/generated/data/minecraft/tags/block/stairs.json b/src/main/generated/data/minecraft/tags/block/stairs.json new file mode 100644 index 00000000..7364e275 --- /dev/null +++ b/src/main/generated/data/minecraft/tags/block/stairs.json @@ -0,0 +1,44 @@ +{ + "values": [ + "twigs:smooth_basalt_brick_stairs", + "twigs:mossy_brick_stairs", + "twigs:gravel_brick_stairs", + "twigs:smooth_stone_brick_stairs", + "twigs:cobblestone_brick_stairs", + "twigs:mossy_cobblestone_brick_stairs", + "twigs:twisting_polished_blackstone_brick_stairs", + "twigs:weeping_polished_blackstone_brick_stairs", + "twigs:polished_tuff_stairs", + "twigs:polished_tuff_brick_stairs", + "twigs:calcite_stairs", + "twigs:polished_calcite_stairs", + "twigs:polished_calcite_brick_stairs", + "twigs:schist_stairs", + "twigs:polished_schist_stairs", + "twigs:polished_schist_brick_stairs", + "twigs:rhyolite_stairs", + "twigs:polished_rhyolite_stairs", + "twigs:polished_rhyolite_brick_stairs", + "twigs:bloodstone_stairs", + "twigs:polished_bloodstone_stairs", + "twigs:polished_bloodstone_brick_stairs", + "twigs:silt_brick_stairs", + "twigs:silt_shingle_stairs", + "twigs:white_silt_shingle_stairs", + "twigs:orange_silt_shingle_stairs", + "twigs:magenta_silt_shingle_stairs", + "twigs:light_blue_silt_shingle_stairs", + "twigs:yellow_silt_shingle_stairs", + "twigs:lime_silt_shingle_stairs", + "twigs:pink_silt_shingle_stairs", + "twigs:gray_silt_shingle_stairs", + "twigs:light_gray_silt_shingle_stairs", + "twigs:cyan_silt_shingle_stairs", + "twigs:purple_silt_shingle_stairs", + "twigs:blue_silt_shingle_stairs", + "twigs:brown_silt_shingle_stairs", + "twigs:green_silt_shingle_stairs", + "twigs:red_silt_shingle_stairs", + "twigs:black_silt_shingle_stairs" + ] +} \ No newline at end of file diff --git a/src/main/generated/data/minecraft/tags/block/walls.json b/src/main/generated/data/minecraft/tags/block/walls.json new file mode 100644 index 00000000..cd07b093 --- /dev/null +++ b/src/main/generated/data/minecraft/tags/block/walls.json @@ -0,0 +1,39 @@ +{ + "values": [ + "twigs:smooth_basalt_brick_wall", + "twigs:mossy_brick_wall", + "twigs:gravel_brick_wall", + "twigs:smooth_stone_brick_wall", + "twigs:cobblestone_brick_wall", + "twigs:mossy_cobblestone_brick_wall", + "twigs:twisting_polished_blackstone_brick_wall", + "twigs:weeping_polished_blackstone_brick_wall", + "twigs:polished_tuff_brick_wall", + "twigs:calcite_wall", + "twigs:polished_calcite_brick_wall", + "twigs:schist_wall", + "twigs:polished_schist_brick_wall", + "twigs:rhyolite_wall", + "twigs:polished_rhyolite_brick_wall", + "twigs:bloodstone_wall", + "twigs:polished_bloodstone_brick_wall", + "twigs:silt_brick_wall", + "twigs:silt_shingle_wall", + "twigs:white_silt_shingle_wall", + "twigs:orange_silt_shingle_wall", + "twigs:magenta_silt_shingle_wall", + "twigs:light_blue_silt_shingle_wall", + "twigs:yellow_silt_shingle_wall", + "twigs:lime_silt_shingle_wall", + "twigs:pink_silt_shingle_wall", + "twigs:gray_silt_shingle_wall", + "twigs:light_gray_silt_shingle_wall", + "twigs:cyan_silt_shingle_wall", + "twigs:purple_silt_shingle_wall", + "twigs:blue_silt_shingle_wall", + "twigs:brown_silt_shingle_wall", + "twigs:green_silt_shingle_wall", + "twigs:red_silt_shingle_wall", + "twigs:black_silt_shingle_wall" + ] +} \ No newline at end of file diff --git a/src/main/generated/data/minecraft/tags/item/piglin_repellents.json b/src/main/generated/data/minecraft/tags/item/piglin_repellents.json new file mode 100644 index 00000000..917aee04 --- /dev/null +++ b/src/main/generated/data/minecraft/tags/item/piglin_repellents.json @@ -0,0 +1,5 @@ +{ + "values": [ + "twigs:soul_lamp" + ] +} \ No newline at end of file diff --git a/src/main/generated/data/minecraft/tags/item/slabs.json b/src/main/generated/data/minecraft/tags/item/slabs.json new file mode 100644 index 00000000..8537433e --- /dev/null +++ b/src/main/generated/data/minecraft/tags/item/slabs.json @@ -0,0 +1,45 @@ +{ + "values": [ + "twigs:bamboo_thatch_slab", + "twigs:smooth_basalt_brick_slab", + "twigs:mossy_brick_slab", + "twigs:gravel_brick_slab", + "twigs:smooth_stone_brick_slab", + "twigs:cobblestone_brick_slab", + "twigs:mossy_cobblestone_brick_slab", + "twigs:twisting_polished_blackstone_brick_slab", + "twigs:weeping_polished_blackstone_brick_slab", + "twigs:polished_tuff_slab", + "twigs:polished_tuff_brick_slab", + "twigs:calcite_slab", + "twigs:polished_calcite_slab", + "twigs:polished_calcite_brick_slab", + "twigs:schist_slab", + "twigs:polished_schist_slab", + "twigs:polished_schist_brick_slab", + "twigs:rhyolite_slab", + "twigs:polished_rhyolite_slab", + "twigs:polished_rhyolite_brick_slab", + "twigs:bloodstone_slab", + "twigs:polished_bloodstone_slab", + "twigs:polished_bloodstone_brick_slab", + "twigs:silt_brick_slab", + "twigs:silt_shingle_slab", + "twigs:white_silt_shingle_slab", + "twigs:orange_silt_shingle_slab", + "twigs:magenta_silt_shingle_slab", + "twigs:light_blue_silt_shingle_slab", + "twigs:yellow_silt_shingle_slab", + "twigs:lime_silt_shingle_slab", + "twigs:pink_silt_shingle_slab", + "twigs:gray_silt_shingle_slab", + "twigs:light_gray_silt_shingle_slab", + "twigs:cyan_silt_shingle_slab", + "twigs:purple_silt_shingle_slab", + "twigs:blue_silt_shingle_slab", + "twigs:brown_silt_shingle_slab", + "twigs:green_silt_shingle_slab", + "twigs:red_silt_shingle_slab", + "twigs:black_silt_shingle_slab" + ] +} \ No newline at end of file diff --git a/src/main/generated/data/minecraft/tags/item/small_flowers.json b/src/main/generated/data/minecraft/tags/item/small_flowers.json new file mode 100644 index 00000000..1223579c --- /dev/null +++ b/src/main/generated/data/minecraft/tags/item/small_flowers.json @@ -0,0 +1,5 @@ +{ + "values": [ + "twigs:azalea_flowers" + ] +} \ No newline at end of file diff --git a/src/main/generated/data/minecraft/tags/item/stairs.json b/src/main/generated/data/minecraft/tags/item/stairs.json new file mode 100644 index 00000000..7364e275 --- /dev/null +++ b/src/main/generated/data/minecraft/tags/item/stairs.json @@ -0,0 +1,44 @@ +{ + "values": [ + "twigs:smooth_basalt_brick_stairs", + "twigs:mossy_brick_stairs", + "twigs:gravel_brick_stairs", + "twigs:smooth_stone_brick_stairs", + "twigs:cobblestone_brick_stairs", + "twigs:mossy_cobblestone_brick_stairs", + "twigs:twisting_polished_blackstone_brick_stairs", + "twigs:weeping_polished_blackstone_brick_stairs", + "twigs:polished_tuff_stairs", + "twigs:polished_tuff_brick_stairs", + "twigs:calcite_stairs", + "twigs:polished_calcite_stairs", + "twigs:polished_calcite_brick_stairs", + "twigs:schist_stairs", + "twigs:polished_schist_stairs", + "twigs:polished_schist_brick_stairs", + "twigs:rhyolite_stairs", + "twigs:polished_rhyolite_stairs", + "twigs:polished_rhyolite_brick_stairs", + "twigs:bloodstone_stairs", + "twigs:polished_bloodstone_stairs", + "twigs:polished_bloodstone_brick_stairs", + "twigs:silt_brick_stairs", + "twigs:silt_shingle_stairs", + "twigs:white_silt_shingle_stairs", + "twigs:orange_silt_shingle_stairs", + "twigs:magenta_silt_shingle_stairs", + "twigs:light_blue_silt_shingle_stairs", + "twigs:yellow_silt_shingle_stairs", + "twigs:lime_silt_shingle_stairs", + "twigs:pink_silt_shingle_stairs", + "twigs:gray_silt_shingle_stairs", + "twigs:light_gray_silt_shingle_stairs", + "twigs:cyan_silt_shingle_stairs", + "twigs:purple_silt_shingle_stairs", + "twigs:blue_silt_shingle_stairs", + "twigs:brown_silt_shingle_stairs", + "twigs:green_silt_shingle_stairs", + "twigs:red_silt_shingle_stairs", + "twigs:black_silt_shingle_stairs" + ] +} \ No newline at end of file diff --git a/src/main/generated/data/minecraft/tags/item/walls.json b/src/main/generated/data/minecraft/tags/item/walls.json new file mode 100644 index 00000000..cd07b093 --- /dev/null +++ b/src/main/generated/data/minecraft/tags/item/walls.json @@ -0,0 +1,39 @@ +{ + "values": [ + "twigs:smooth_basalt_brick_wall", + "twigs:mossy_brick_wall", + "twigs:gravel_brick_wall", + "twigs:smooth_stone_brick_wall", + "twigs:cobblestone_brick_wall", + "twigs:mossy_cobblestone_brick_wall", + "twigs:twisting_polished_blackstone_brick_wall", + "twigs:weeping_polished_blackstone_brick_wall", + "twigs:polished_tuff_brick_wall", + "twigs:calcite_wall", + "twigs:polished_calcite_brick_wall", + "twigs:schist_wall", + "twigs:polished_schist_brick_wall", + "twigs:rhyolite_wall", + "twigs:polished_rhyolite_brick_wall", + "twigs:bloodstone_wall", + "twigs:polished_bloodstone_brick_wall", + "twigs:silt_brick_wall", + "twigs:silt_shingle_wall", + "twigs:white_silt_shingle_wall", + "twigs:orange_silt_shingle_wall", + "twigs:magenta_silt_shingle_wall", + "twigs:light_blue_silt_shingle_wall", + "twigs:yellow_silt_shingle_wall", + "twigs:lime_silt_shingle_wall", + "twigs:pink_silt_shingle_wall", + "twigs:gray_silt_shingle_wall", + "twigs:light_gray_silt_shingle_wall", + "twigs:cyan_silt_shingle_wall", + "twigs:purple_silt_shingle_wall", + "twigs:blue_silt_shingle_wall", + "twigs:brown_silt_shingle_wall", + "twigs:green_silt_shingle_wall", + "twigs:red_silt_shingle_wall", + "twigs:black_silt_shingle_wall" + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/acacia_table.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/acacia_table.json new file mode 100644 index 00000000..7c0792ee --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/acacia_table.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_acacia_fence": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_fence" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_acacia_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_acacia_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:acacia_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_acacia_slab", + "has_acacia_fence", + "has_acacia_planks" + ] + ], + "rewards": { + "recipes": [ + "twigs:acacia_table" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/allium_paper_lantern.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/allium_paper_lantern.json new file mode 100644 index 00000000..d1fa3230 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/allium_paper_lantern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_paper_lantern": { + "conditions": { + "items": [ + { + "items": "twigs:paper_lantern" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:allium_paper_lantern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_paper_lantern" + ] + ], + "rewards": { + "recipes": [ + "twigs:allium_paper_lantern" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/azalea_flowers_from_flowering_azalea.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/azalea_flowers_from_flowering_azalea.json new file mode 100644 index 00000000..7bbdfe97 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/azalea_flowers_from_flowering_azalea.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_azalea": { + "conditions": { + "items": [ + { + "items": "minecraft:flowering_azalea" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:azalea_flowers_from_flowering_azalea" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_azalea" + ] + ], + "rewards": { + "recipes": [ + "twigs:azalea_flowers_from_flowering_azalea" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/azalea_flowers_from_flowering_azalea_leaves.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/azalea_flowers_from_flowering_azalea_leaves.json new file mode 100644 index 00000000..dff548f3 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/azalea_flowers_from_flowering_azalea_leaves.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_azalea_leaves": { + "conditions": { + "items": [ + { + "items": "minecraft:flowering_azalea_leaves" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:azalea_flowers_from_flowering_azalea_leaves" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_azalea_leaves" + ] + ], + "rewards": { + "recipes": [ + "twigs:azalea_flowers_from_flowering_azalea_leaves" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/bamboo_mat.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bamboo_mat.json new file mode 100644 index 00000000..ece78943 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bamboo_mat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bamboo": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:bamboo_mat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bamboo" + ] + ], + "rewards": { + "recipes": [ + "twigs:bamboo_mat" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/bamboo_table.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bamboo_table.json new file mode 100644 index 00000000..fe25116f --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bamboo_table.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bamboo_fence": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_fence" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_bamboo_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_bamboo_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:bamboo_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bamboo_slab", + "has_bamboo_fence", + "has_bamboo_planks" + ] + ], + "rewards": { + "recipes": [ + "twigs:bamboo_table" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/bamboo_thatch.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bamboo_thatch.json new file mode 100644 index 00000000..014f40e7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bamboo_thatch.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bamboo_leaves": { + "conditions": { + "items": [ + { + "items": "twigs:bamboo_leaves" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:bamboo_thatch" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bamboo_leaves" + ] + ], + "rewards": { + "recipes": [ + "twigs:bamboo_thatch" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/bamboo_thatch_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bamboo_thatch_slab.json new file mode 100644 index 00000000..81077ade --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bamboo_thatch_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bamboo_thatch": { + "conditions": { + "items": [ + { + "items": "twigs:bamboo_thatch" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:bamboo_thatch_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bamboo_thatch" + ] + ], + "rewards": { + "recipes": [ + "twigs:bamboo_thatch_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/birch_table.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/birch_table.json new file mode 100644 index 00000000..d4ebdbe3 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/birch_table.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_birch_fence": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_fence" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_birch_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_birch_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:birch_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_birch_slab", + "has_birch_fence", + "has_birch_planks" + ] + ], + "rewards": { + "recipes": [ + "twigs:birch_table" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..e36af74a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_packed_silt_from_packed_silt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:black_packed_silt_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:black_packed_silt_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..5f8c4836 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_packed_silt_from_silt_shingles.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:black_packed_silt_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:black_packed_silt_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_silt_pot.json new file mode 100644 index 00000000..2d025f44 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_pot": { + "conditions": { + "items": [ + { + "items": "twigs:silt_pot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:black_silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_pot", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:black_silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_silt_shingle_slab.json new file mode 100644 index 00000000..3251d3ec --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:black_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:black_silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:black_silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_silt_shingle_stairs.json new file mode 100644 index 00000000..b2dce1eb --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:black_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:black_silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:black_silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_silt_shingle_wall.json new file mode 100644 index 00000000..23ce15c4 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:black_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:black_silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:black_silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_silt_shingles.json new file mode 100644 index 00000000..14f2f717 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/black_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:black_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:black_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:black_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/blackstone_column.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blackstone_column.json new file mode 100644 index 00000000..e7e11de6 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blackstone_column.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_blackstone_column": { + "conditions": { + "items": [ + { + "items": "twigs:blackstone_column" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:blackstone_column" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone", + "has_blackstone_column" + ] + ], + "rewards": { + "recipes": [ + "twigs:blackstone_column" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bloodstone.json new file mode 100644 index 00000000..2f181937 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bloodstone.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sand", + "has_iron_nugget" + ] + ], + "rewards": { + "recipes": [ + "twigs:bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/bloodstone_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bloodstone_slab.json new file mode 100644 index 00000000..9a5a5b3f --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bloodstone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:bloodstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:bloodstone_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/bloodstone_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bloodstone_stairs.json new file mode 100644 index 00000000..d0bb262c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bloodstone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:bloodstone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:bloodstone_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/bloodstone_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bloodstone_wall.json new file mode 100644 index 00000000..1ab7ac5b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bloodstone_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:bloodstone_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:bloodstone_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_orchid_paper_lantern.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_orchid_paper_lantern.json new file mode 100644 index 00000000..97482409 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_orchid_paper_lantern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_paper_lantern": { + "conditions": { + "items": [ + { + "items": "twigs:paper_lantern" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:blue_orchid_paper_lantern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_paper_lantern" + ] + ], + "rewards": { + "recipes": [ + "twigs:blue_orchid_paper_lantern" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..23d0465f --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_packed_silt_from_packed_silt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:blue_packed_silt_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:blue_packed_silt_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..12ed5ea7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_packed_silt_from_silt_shingles.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:blue_packed_silt_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:blue_packed_silt_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_silt_pot.json new file mode 100644 index 00000000..8d27d2a4 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_pot": { + "conditions": { + "items": [ + { + "items": "twigs:silt_pot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:blue_silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_pot", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:blue_silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_silt_shingle_slab.json new file mode 100644 index 00000000..a99d8070 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:blue_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:blue_silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:blue_silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_silt_shingle_stairs.json new file mode 100644 index 00000000..e00a79fe --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:blue_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:blue_silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:blue_silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_silt_shingle_wall.json new file mode 100644 index 00000000..174bc35e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:blue_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:blue_silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:blue_silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_silt_shingles.json new file mode 100644 index 00000000..fe8178d5 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/blue_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:blue_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:blue_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:blue_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/bone_meal_from_seashells.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bone_meal_from_seashells.json new file mode 100644 index 00000000..f7076ae2 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/bone_meal_from_seashells.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_seashells": { + "conditions": { + "items": [ + { + "items": "#twigs:seashells" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:bone_meal_from_seashells" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_seashells" + ] + ], + "rewards": { + "recipes": [ + "twigs:bone_meal_from_seashells" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/brick_trail.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/brick_trail.json new file mode 100644 index 00000000..d24fcc9b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/brick_trail.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brick_trail": { + "conditions": { + "items": [ + { + "items": "twigs:brick_trail" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:brick_trail" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks", + "has_brick_trail" + ] + ], + "rewards": { + "recipes": [ + "twigs:brick_trail" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..f5d63e4b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_packed_silt_from_packed_silt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:brown_packed_silt_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:brown_packed_silt_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..42fc3c14 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_packed_silt_from_silt_shingles.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:brown_packed_silt_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:brown_packed_silt_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_silt_pot.json new file mode 100644 index 00000000..1f723562 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_pot": { + "conditions": { + "items": [ + { + "items": "twigs:silt_pot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:brown_silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_pot", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:brown_silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_silt_shingle_slab.json new file mode 100644 index 00000000..8a8b240c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:brown_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:brown_silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:brown_silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_silt_shingle_stairs.json new file mode 100644 index 00000000..b1dc12f9 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:brown_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:brown_silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:brown_silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_silt_shingle_wall.json new file mode 100644 index 00000000..b5e9d88e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:brown_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:brown_silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:brown_silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_silt_shingles.json new file mode 100644 index 00000000..239c8b80 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/brown_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:brown_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:brown_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:brown_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/calcite_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/calcite_slab.json new file mode 100644 index 00000000..a9604527 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/calcite_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_calcite": { + "conditions": { + "items": [ + { + "items": "minecraft:calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:calcite_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:calcite_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/calcite_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/calcite_stairs.json new file mode 100644 index 00000000..c406bfc7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/calcite_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_calcite": { + "conditions": { + "items": [ + { + "items": "minecraft:calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:calcite_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:calcite_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/calcite_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/calcite_wall.json new file mode 100644 index 00000000..ff24584d --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/calcite_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_calcite": { + "conditions": { + "items": [ + { + "items": "minecraft:calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:calcite_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:calcite_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/cherry_table.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cherry_table.json new file mode 100644 index 00000000..7ee3cc68 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cherry_table.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cherry_fence": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_fence" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_cherry_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_cherry_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:cherry_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cherry_slab", + "has_cherry_fence", + "has_cherry_planks" + ] + ], + "rewards": { + "recipes": [ + "twigs:cherry_table" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/chiseled_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/chiseled_bricks.json new file mode 100644 index 00000000..c581b71c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/chiseled_bricks.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brick_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:brick_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_chiseled_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:chiseled_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:chiseled_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brick_slab", + "has_chiseled_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:chiseled_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/chiseled_silt_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/chiseled_silt_bricks.json new file mode 100644 index 00000000..9d0a6b78 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/chiseled_silt_bricks.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_silt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:chiseled_silt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_brick_slab": { + "conditions": { + "items": [ + { + "items": "twigs:silt_brick_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:chiseled_silt_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_brick_slab", + "has_chiseled_silt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:chiseled_silt_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/chiseled_smooth_basalt_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/chiseled_smooth_basalt_bricks.json new file mode 100644 index 00000000..aa787eca --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/chiseled_smooth_basalt_bricks.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_smooth_basalt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:chiseled_smooth_basalt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_smooth_basalt_brick_slab": { + "conditions": { + "items": [ + { + "items": "twigs:smooth_basalt_brick_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:chiseled_smooth_basalt_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_basalt_brick_slab", + "has_chiseled_smooth_basalt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:chiseled_smooth_basalt_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/cobblestone_brick_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cobblestone_brick_slab.json new file mode 100644 index 00000000..9d36a638 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cobblestone_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:cobblestone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:cobblestone_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:cobblestone_brick_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/cobblestone_brick_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cobblestone_brick_stairs.json new file mode 100644 index 00000000..7f71e7e9 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cobblestone_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:cobblestone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:cobblestone_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:cobblestone_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/cobblestone_brick_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cobblestone_brick_wall.json new file mode 100644 index 00000000..f86b4714 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cobblestone_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:cobblestone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:cobblestone_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:cobblestone_brick_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/cobblestone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cobblestone_bricks.json new file mode 100644 index 00000000..dd0bae26 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cobblestone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:cobblestone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "twigs:cobblestone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/cobblestone_from_pebble.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cobblestone_from_pebble.json new file mode 100644 index 00000000..aa32ccdf --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cobblestone_from_pebble.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pebble": { + "conditions": { + "items": [ + { + "items": "twigs:pebble" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:cobblestone_from_pebble" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pebble" + ] + ], + "rewards": { + "recipes": [ + "twigs:cobblestone_from_pebble" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/compacted_dripstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/compacted_dripstone.json new file mode 100644 index 00000000..d84efbda --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/compacted_dripstone.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_compacted_dripstone": { + "conditions": { + "items": [ + { + "items": "twigs:compacted_dripstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_pointed_dripstone": { + "conditions": { + "items": [ + { + "items": "minecraft:pointed_dripstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:compacted_dripstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pointed_dripstone", + "has_compacted_dripstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:compacted_dripstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/copper_pillar.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/copper_pillar.json new file mode 100644 index 00000000..e3c5ecdf --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/copper_pillar.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_pillar": { + "conditions": { + "items": [ + { + "items": "twigs:copper_pillar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:copper_pillar" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper", + "has_copper_pillar" + ] + ], + "rewards": { + "recipes": [ + "twigs:copper_pillar" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/crimson_roots_paper_lantern.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/crimson_roots_paper_lantern.json new file mode 100644 index 00000000..28968c45 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/crimson_roots_paper_lantern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_paper_lantern": { + "conditions": { + "items": [ + { + "items": "twigs:paper_lantern" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:crimson_roots_paper_lantern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_paper_lantern" + ] + ], + "rewards": { + "recipes": [ + "twigs:crimson_roots_paper_lantern" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/crimson_shroomlamp.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/crimson_shroomlamp.json new file mode 100644 index 00000000..80ff071a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/crimson_shroomlamp.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_crimson_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_shroomlight": { + "conditions": { + "items": [ + { + "items": "minecraft:shroomlight" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:crimson_shroomlamp" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_crimson_planks", + "has_shroomlight" + ] + ], + "rewards": { + "recipes": [ + "twigs:crimson_shroomlamp" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/crimson_table.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/crimson_table.json new file mode 100644 index 00000000..383a1a7f --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/crimson_table.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_crimson_fence": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_fence" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_crimson_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_crimson_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:crimson_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_crimson_slab", + "has_crimson_fence", + "has_crimson_planks" + ] + ], + "rewards": { + "recipes": [ + "twigs:crimson_table" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/cut_amethyst.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cut_amethyst.json new file mode 100644 index 00000000..0e09d1c7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cut_amethyst.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_amethyst": { + "conditions": { + "items": [ + { + "items": "twigs:polished_amethyst" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:cut_amethyst" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_amethyst" + ] + ], + "rewards": { + "recipes": [ + "twigs:cut_amethyst" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..3e71b987 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_packed_silt_from_packed_silt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:cyan_packed_silt_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:cyan_packed_silt_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..f99c110c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_packed_silt_from_silt_shingles.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:cyan_packed_silt_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:cyan_packed_silt_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_silt_pot.json new file mode 100644 index 00000000..91fdd792 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_pot": { + "conditions": { + "items": [ + { + "items": "twigs:silt_pot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:cyan_silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_pot", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:cyan_silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_silt_shingle_slab.json new file mode 100644 index 00000000..484f234e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:cyan_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:cyan_silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:cyan_silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_silt_shingle_stairs.json new file mode 100644 index 00000000..4cb7d071 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:cyan_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:cyan_silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:cyan_silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_silt_shingle_wall.json new file mode 100644 index 00000000..09e85d8e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:cyan_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:cyan_silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:cyan_silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_silt_shingles.json new file mode 100644 index 00000000..46cb80de --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/cyan_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:cyan_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:cyan_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:cyan_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/dandelion_paper_lantern.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/dandelion_paper_lantern.json new file mode 100644 index 00000000..f3dffdff --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/dandelion_paper_lantern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_paper_lantern": { + "conditions": { + "items": [ + { + "items": "twigs:paper_lantern" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:dandelion_paper_lantern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_paper_lantern" + ] + ], + "rewards": { + "recipes": [ + "twigs:dandelion_paper_lantern" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/dark_oak_table.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/dark_oak_table.json new file mode 100644 index 00000000..c20b6bc5 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/dark_oak_table.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dark_oak_fence": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_fence" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_dark_oak_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_dark_oak_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:dark_oak_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dark_oak_slab", + "has_dark_oak_fence", + "has_dark_oak_planks" + ] + ], + "rewards": { + "recipes": [ + "twigs:dark_oak_table" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/deepslate_column.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/deepslate_column.json new file mode 100644 index 00000000..57a2faf1 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/deepslate_column.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_deepslate_column": { + "conditions": { + "items": [ + { + "items": "twigs:deepslate_column" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:deepslate_column" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate", + "has_deepslate_column" + ] + ], + "rewards": { + "recipes": [ + "twigs:deepslate_column" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/exposed_copper_pillar.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/exposed_copper_pillar.json new file mode 100644 index 00000000..e5c255bb --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/exposed_copper_pillar.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_pillar": { + "conditions": { + "items": [ + { + "items": "twigs:exposed_copper_pillar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:exposed_copper_pillar" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper", + "has_exposed_copper_pillar" + ] + ], + "rewards": { + "recipes": [ + "twigs:exposed_copper_pillar" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/gravel_brick_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gravel_brick_slab.json new file mode 100644 index 00000000..e4f55d62 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gravel_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:gravel_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:gravel_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gravel_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:gravel_brick_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/gravel_brick_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gravel_brick_stairs.json new file mode 100644 index 00000000..7685ebbd --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gravel_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:gravel_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:gravel_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gravel_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:gravel_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/gravel_brick_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gravel_brick_wall.json new file mode 100644 index 00000000..c769f708 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gravel_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:gravel_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:gravel_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gravel_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:gravel_brick_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/gravel_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gravel_bricks.json new file mode 100644 index 00000000..295d24a5 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gravel_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:gravel_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "twigs:gravel_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..af363263 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_packed_silt_from_packed_silt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:gray_packed_silt_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:gray_packed_silt_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..3518eded --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_packed_silt_from_silt_shingles.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:gray_packed_silt_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:gray_packed_silt_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_silt_pot.json new file mode 100644 index 00000000..70471c08 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_pot": { + "conditions": { + "items": [ + { + "items": "twigs:silt_pot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:gray_silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_pot", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:gray_silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_silt_shingle_slab.json new file mode 100644 index 00000000..d8a8d0b5 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:gray_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:gray_silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:gray_silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_silt_shingle_stairs.json new file mode 100644 index 00000000..64a069a5 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:gray_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:gray_silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:gray_silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_silt_shingle_wall.json new file mode 100644 index 00000000..42a9e6b3 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:gray_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:gray_silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:gray_silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_silt_shingles.json new file mode 100644 index 00000000..b5046a41 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/gray_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:gray_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:gray_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:gray_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..954df758 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_packed_silt_from_packed_silt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:green_packed_silt_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:green_packed_silt_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..feb37e0b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_packed_silt_from_silt_shingles.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:green_packed_silt_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:green_packed_silt_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_silt_pot.json new file mode 100644 index 00000000..89194ba9 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_pot": { + "conditions": { + "items": [ + { + "items": "twigs:silt_pot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:green_silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_pot", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:green_silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_silt_shingle_slab.json new file mode 100644 index 00000000..3cd65ff1 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:green_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:green_silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:green_silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_silt_shingle_stairs.json new file mode 100644 index 00000000..d201550b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:green_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:green_silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:green_silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_silt_shingle_wall.json new file mode 100644 index 00000000..25a00ee5 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:green_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:green_silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:green_silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_silt_shingles.json new file mode 100644 index 00000000..d073a5d0 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/green_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:green_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:green_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:green_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/jungle_table.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/jungle_table.json new file mode 100644 index 00000000..fedbb60e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/jungle_table.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_jungle_fence": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_fence" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_jungle_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_jungle_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:jungle_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_jungle_slab", + "has_jungle_fence", + "has_jungle_planks" + ] + ], + "rewards": { + "recipes": [ + "twigs:jungle_table" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/lamp.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/lamp.json new file mode 100644 index 00000000..5e10d510 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/lamp.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_coal": { + "conditions": { + "items": [ + { + "items": "minecraft:coal" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:lamp" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_torch": { + "conditions": { + "items": [ + { + "items": "minecraft:torch" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot", + "has_torch", + "has_coal" + ] + ], + "rewards": { + "recipes": [ + "twigs:lamp" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..a36abab8 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_packed_silt_from_packed_silt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:light_blue_packed_silt_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:light_blue_packed_silt_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..519bfe4d --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_packed_silt_from_silt_shingles.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:light_blue_packed_silt_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:light_blue_packed_silt_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_silt_pot.json new file mode 100644 index 00000000..6d5bac82 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_pot": { + "conditions": { + "items": [ + { + "items": "twigs:silt_pot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:light_blue_silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_pot", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:light_blue_silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_silt_shingle_slab.json new file mode 100644 index 00000000..54529b18 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:light_blue_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:light_blue_silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:light_blue_silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_silt_shingle_stairs.json new file mode 100644 index 00000000..cfccaab0 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:light_blue_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:light_blue_silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:light_blue_silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_silt_shingle_wall.json new file mode 100644 index 00000000..adecd752 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:light_blue_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:light_blue_silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:light_blue_silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_silt_shingles.json new file mode 100644 index 00000000..93774d00 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_blue_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:light_blue_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:light_blue_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:light_blue_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..d5d6c4d1 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_packed_silt_from_packed_silt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:light_gray_packed_silt_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:light_gray_packed_silt_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..7cc05701 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_packed_silt_from_silt_shingles.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:light_gray_packed_silt_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:light_gray_packed_silt_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_silt_pot.json new file mode 100644 index 00000000..dd78f494 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_pot": { + "conditions": { + "items": [ + { + "items": "twigs:silt_pot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:light_gray_silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_pot", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:light_gray_silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_silt_shingle_slab.json new file mode 100644 index 00000000..7f325783 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:light_gray_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:light_gray_silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:light_gray_silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_silt_shingle_stairs.json new file mode 100644 index 00000000..fe955f62 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:light_gray_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:light_gray_silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:light_gray_silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_silt_shingle_wall.json new file mode 100644 index 00000000..016c303a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:light_gray_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:light_gray_silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:light_gray_silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_silt_shingles.json new file mode 100644 index 00000000..ece2682c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/light_gray_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:light_gray_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:light_gray_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:light_gray_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..5107c9a2 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_packed_silt_from_packed_silt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:lime_packed_silt_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:lime_packed_silt_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..9daabfaf --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_packed_silt_from_silt_shingles.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:lime_packed_silt_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:lime_packed_silt_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_silt_pot.json new file mode 100644 index 00000000..60ac16af --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_pot": { + "conditions": { + "items": [ + { + "items": "twigs:silt_pot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:lime_silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_pot", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:lime_silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_silt_shingle_slab.json new file mode 100644 index 00000000..b5b84ded --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:lime_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:lime_silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:lime_silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_silt_shingle_stairs.json new file mode 100644 index 00000000..a9e5eee8 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:lime_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:lime_silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:lime_silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_silt_shingle_wall.json new file mode 100644 index 00000000..e58c419c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:lime_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:lime_silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:lime_silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_silt_shingles.json new file mode 100644 index 00000000..75f019c6 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/lime_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:lime_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:lime_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:lime_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..0e74cba7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_packed_silt_from_packed_silt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:magenta_packed_silt_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:magenta_packed_silt_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..f15135a4 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_packed_silt_from_silt_shingles.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:magenta_packed_silt_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:magenta_packed_silt_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_silt_pot.json new file mode 100644 index 00000000..2c5b3dda --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_pot": { + "conditions": { + "items": [ + { + "items": "twigs:silt_pot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:magenta_silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_pot", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:magenta_silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_silt_shingle_slab.json new file mode 100644 index 00000000..45e84ec7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:magenta_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:magenta_silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:magenta_silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_silt_shingle_stairs.json new file mode 100644 index 00000000..afdc58f8 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:magenta_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:magenta_silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:magenta_silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_silt_shingle_wall.json new file mode 100644 index 00000000..78a0825e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:magenta_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:magenta_silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:magenta_silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_silt_shingles.json new file mode 100644 index 00000000..71938b6f --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/magenta_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:magenta_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:magenta_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:magenta_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/mangrove_table.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mangrove_table.json new file mode 100644 index 00000000..7d890066 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mangrove_table.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mangrove_fence": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_fence" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_mangrove_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_mangrove_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:mangrove_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mangrove_slab", + "has_mangrove_fence", + "has_mangrove_planks" + ] + ], + "rewards": { + "recipes": [ + "twigs:mangrove_table" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/mixed_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mixed_bricks.json new file mode 100644 index 00000000..04282d21 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mixed_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:mixed_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:mixed_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/mixed_silt_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mixed_silt_bricks.json new file mode 100644 index 00000000..bc63f6e0 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mixed_silt_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:silt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:mixed_silt_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:mixed_silt_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_brick_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_brick_slab.json new file mode 100644 index 00000000..24f32ab4 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:mossy_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:mossy_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:mossy_brick_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_brick_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_brick_stairs.json new file mode 100644 index 00000000..34418ee0 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:mossy_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:mossy_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:mossy_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_brick_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_brick_wall.json new file mode 100644 index 00000000..17a78b8a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:mossy_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:mossy_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:mossy_brick_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_bricks_from_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_bricks_from_bricks.json new file mode 100644 index 00000000..2d7c1f03 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_bricks_from_bricks.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_moss_block": { + "conditions": { + "items": [ + { + "items": "minecraft:moss_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:mossy_bricks_from_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks", + "has_moss_block" + ] + ], + "rewards": { + "recipes": [ + "twigs:mossy_bricks_from_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_bricks_from_vines.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_bricks_from_vines.json new file mode 100644 index 00000000..eaa990b1 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_bricks_from_vines.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:mossy_bricks_from_vines" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_vines": { + "conditions": { + "items": [ + { + "items": "minecraft:vine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks", + "has_vines" + ] + ], + "rewards": { + "recipes": [ + "twigs:mossy_bricks_from_vines" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_cobblestone_brick_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_cobblestone_brick_slab.json new file mode 100644 index 00000000..51a9c0ac --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_cobblestone_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:mossy_cobblestone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:mossy_cobblestone_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:mossy_cobblestone_brick_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_cobblestone_brick_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_cobblestone_brick_stairs.json new file mode 100644 index 00000000..8778e26e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_cobblestone_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:mossy_cobblestone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:mossy_cobblestone_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:mossy_cobblestone_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_cobblestone_brick_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_cobblestone_brick_wall.json new file mode 100644 index 00000000..26ea4221 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_cobblestone_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:mossy_cobblestone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:mossy_cobblestone_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:mossy_cobblestone_brick_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_cobblestone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_cobblestone_bricks.json new file mode 100644 index 00000000..88a69b34 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_cobblestone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:mossy_cobblestone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "twigs:mossy_cobblestone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_cobblestone_bricks_from_moss.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_cobblestone_bricks_from_moss.json new file mode 100644 index 00000000..d571415e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/mossy_cobblestone_bricks_from_moss.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:cobblestone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_moss_block": { + "conditions": { + "items": [ + { + "items": "minecraft:moss_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:mossy_cobblestone_bricks_from_moss" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone_bricks", + "has_moss_block" + ] + ], + "rewards": { + "recipes": [ + "twigs:mossy_cobblestone_bricks_from_moss" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/oak_table.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/oak_table.json new file mode 100644 index 00000000..06733604 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/oak_table.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oak_fence": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_fence" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_oak_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_oak_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:oak_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oak_slab", + "has_oak_fence", + "has_oak_planks" + ] + ], + "rewards": { + "recipes": [ + "twigs:oak_table" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..ebb70984 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_packed_silt_from_packed_silt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:orange_packed_silt_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:orange_packed_silt_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..e43a76ab --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_packed_silt_from_silt_shingles.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:orange_packed_silt_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:orange_packed_silt_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_silt_pot.json new file mode 100644 index 00000000..dff77ebb --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_pot": { + "conditions": { + "items": [ + { + "items": "twigs:silt_pot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:orange_silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_pot", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:orange_silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_silt_shingle_slab.json new file mode 100644 index 00000000..7c840436 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:orange_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:orange_silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:orange_silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_silt_shingle_stairs.json new file mode 100644 index 00000000..17b013ab --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:orange_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:orange_silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:orange_silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_silt_shingle_wall.json new file mode 100644 index 00000000..fd1c701b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:orange_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:orange_silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:orange_silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_silt_shingles.json new file mode 100644 index 00000000..03086f22 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/orange_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:orange_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:orange_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:orange_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/oxidized_copper_pillar.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/oxidized_copper_pillar.json new file mode 100644 index 00000000..8f06fb22 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/oxidized_copper_pillar.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_pillar": { + "conditions": { + "items": [ + { + "items": "twigs:oxidized_copper_pillar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:oxidized_copper_pillar" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper", + "has_oxidized_copper_pillar" + ] + ], + "rewards": { + "recipes": [ + "twigs:oxidized_copper_pillar" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/packed_silt.json new file mode 100644 index 00000000..e1ee1e44 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/packed_silt.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt": { + "conditions": { + "items": [ + { + "items": "twigs:silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wheat": { + "conditions": { + "items": [ + { + "items": "minecraft:wheat" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wheat", + "has_silt", + "has_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/paper_lantern.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/paper_lantern.json new file mode 100644 index 00000000..87537572 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/paper_lantern.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_paper": { + "conditions": { + "items": [ + { + "items": "minecraft:paper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:paper_lantern" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_torch": { + "conditions": { + "items": [ + { + "items": "minecraft:torch" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_paper", + "has_torch" + ] + ], + "rewards": { + "recipes": [ + "twigs:paper_lantern" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..92c952ce --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_packed_silt_from_packed_silt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:pink_packed_silt_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:pink_packed_silt_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..7281cab8 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_packed_silt_from_silt_shingles.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:pink_packed_silt_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:pink_packed_silt_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_silt_pot.json new file mode 100644 index 00000000..72074b20 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_pot": { + "conditions": { + "items": [ + { + "items": "twigs:silt_pot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:pink_silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_pot", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:pink_silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_silt_shingle_slab.json new file mode 100644 index 00000000..3c536ada --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:pink_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:pink_silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:pink_silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_silt_shingle_stairs.json new file mode 100644 index 00000000..9c02811a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:pink_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:pink_silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:pink_silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_silt_shingle_wall.json new file mode 100644 index 00000000..a572e826 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:pink_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:pink_silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:pink_silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_silt_shingles.json new file mode 100644 index 00000000..afbf0a90 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/pink_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:pink_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:pink_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:pink_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_amethyst.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_amethyst.json new file mode 100644 index 00000000..1641bc83 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_amethyst.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_amethyst_block": { + "conditions": { + "items": [ + { + "items": "minecraft:amethyst_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_amethyst" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_amethyst_block" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_amethyst" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_basalt_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_basalt_bricks.json new file mode 100644 index 00000000..23c9dc04 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_basalt_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_basalt": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_basalt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_basalt_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_basalt" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_basalt_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone.json new file mode 100644 index 00000000..2b6824bd --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_brick_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_brick_slab.json new file mode 100644 index 00000000..d5f8626c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_bloodstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_bloodstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_bloodstone_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_bloodstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_bloodstone_brick_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_brick_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_brick_stairs.json new file mode 100644 index 00000000..7da10c4e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_bloodstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_bloodstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_bloodstone_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_bloodstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_bloodstone_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_brick_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_brick_wall.json new file mode 100644 index 00000000..198eacb1 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_bloodstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_bloodstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_bloodstone_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_bloodstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_bloodstone_brick_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_bricks.json new file mode 100644 index 00000000..afc27ef7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:polished_bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_bloodstone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_bloodstone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_slab.json new file mode 100644 index 00000000..f8b7c640 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:polished_bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_bloodstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_bloodstone_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_stairs.json new file mode 100644 index 00000000..9d0d479d --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_bloodstone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:polished_bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_bloodstone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_bloodstone_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite.json new file mode 100644 index 00000000..e08a05c0 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_calcite": { + "conditions": { + "items": [ + { + "items": "minecraft:calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_brick_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_brick_slab.json new file mode 100644 index 00000000..d493581b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_calcite_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_calcite_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_calcite_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_calcite_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_calcite_brick_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_brick_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_brick_stairs.json new file mode 100644 index 00000000..76d726b5 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_calcite_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_calcite_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_calcite_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_calcite_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_calcite_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_brick_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_brick_wall.json new file mode 100644 index 00000000..981ae65a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_calcite_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_calcite_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_calcite_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_calcite_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_calcite_brick_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_bricks.json new file mode 100644 index 00000000..5b3d779c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_calcite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_calcite_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_calcite_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_slab.json new file mode 100644 index 00000000..9bb95bc6 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_calcite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_calcite_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_calcite_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_stairs.json new file mode 100644 index 00000000..f7b9b8a7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_calcite_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_calcite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_calcite_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_calcite_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite.json new file mode 100644 index 00000000..1b1951db --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_brick_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_brick_slab.json new file mode 100644 index 00000000..15122ca6 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_rhyolite_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_rhyolite_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_rhyolite_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_rhyolite_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_rhyolite_brick_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_brick_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_brick_stairs.json new file mode 100644 index 00000000..a3218a8d --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_rhyolite_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_rhyolite_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_rhyolite_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_rhyolite_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_rhyolite_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_brick_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_brick_wall.json new file mode 100644 index 00000000..6e4a3ee3 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_rhyolite_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_rhyolite_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_rhyolite_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_rhyolite_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_rhyolite_brick_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_bricks.json new file mode 100644 index 00000000..2b6cd112 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_rhyolite_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_rhyolite_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_slab.json new file mode 100644 index 00000000..74f5a544 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_rhyolite_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_rhyolite_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_stairs.json new file mode 100644 index 00000000..74c71f3b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_rhyolite_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_rhyolite_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_rhyolite_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist.json new file mode 100644 index 00000000..96b11aaa --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_schist": { + "conditions": { + "items": [ + { + "items": "twigs:schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_brick_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_brick_slab.json new file mode 100644 index 00000000..cb6e1002 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_schist_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_schist_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_schist_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_schist_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_schist_brick_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_brick_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_brick_stairs.json new file mode 100644 index 00000000..14c0647d --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_schist_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_schist_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_schist_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_schist_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_schist_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_brick_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_brick_wall.json new file mode 100644 index 00000000..bd009667 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_schist_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_schist_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_schist_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_schist_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_schist_brick_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_bricks.json new file mode 100644 index 00000000..b041dc64 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_schist": { + "conditions": { + "items": [ + { + "items": "twigs:polished_schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_schist_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_schist_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_slab.json new file mode 100644 index 00000000..a78569a7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_schist": { + "conditions": { + "items": [ + { + "items": "twigs:polished_schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_schist_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_schist_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_stairs.json new file mode 100644 index 00000000..42473e47 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_schist_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_schist": { + "conditions": { + "items": [ + { + "items": "twigs:polished_schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_schist_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_schist_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff.json new file mode 100644 index 00000000..9effdb2e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_tuff" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_brick_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_brick_slab.json new file mode 100644 index 00000000..157ae4bc --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_tuff_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_tuff_brick_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_brick_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_brick_stairs.json new file mode 100644 index 00000000..934a685f --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_tuff_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_tuff_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_brick_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_brick_wall.json new file mode 100644 index 00000000..9ccd0894 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_tuff_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_tuff_brick_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_bricks.json new file mode 100644 index 00000000..87bd6443 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "twigs:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_tuff_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_tuff_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_slab.json new file mode 100644 index 00000000..dc68d029 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "twigs:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_tuff_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_tuff_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_stairs.json new file mode 100644 index 00000000..e49af093 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/polished_tuff_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "twigs:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:polished_tuff_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:polished_tuff_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..d2c599ad --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_packed_silt_from_packed_silt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:purple_packed_silt_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:purple_packed_silt_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..73351ad2 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_packed_silt_from_silt_shingles.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:purple_packed_silt_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:purple_packed_silt_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_silt_pot.json new file mode 100644 index 00000000..c9bcc9dc --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_pot": { + "conditions": { + "items": [ + { + "items": "twigs:silt_pot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:purple_silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_pot", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:purple_silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_silt_shingle_slab.json new file mode 100644 index 00000000..67ea913f --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:purple_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:purple_silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:purple_silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_silt_shingle_stairs.json new file mode 100644 index 00000000..f1bbc4d9 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:purple_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:purple_silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:purple_silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_silt_shingle_wall.json new file mode 100644 index 00000000..45f68bfe --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:purple_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:purple_silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:purple_silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_silt_shingles.json new file mode 100644 index 00000000..b37e9e15 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/purple_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:purple_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:purple_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:purple_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/quartz_column.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/quartz_column.json new file mode 100644 index 00000000..c8e48db4 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/quartz_column.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_column": { + "conditions": { + "items": [ + { + "items": "twigs:quartz_column" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:quartz_column" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz_block", + "has_quartz_column" + ] + ], + "rewards": { + "recipes": [ + "twigs:quartz_column" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..6613d831 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_packed_silt_from_packed_silt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:red_packed_silt_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:red_packed_silt_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..be07ff59 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_packed_silt_from_silt_shingles.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:red_packed_silt_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:red_packed_silt_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_silt_pot.json new file mode 100644 index 00000000..70d91cee --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_pot": { + "conditions": { + "items": [ + { + "items": "twigs:silt_pot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:red_silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_pot", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:red_silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_silt_shingle_slab.json new file mode 100644 index 00000000..f5f7c737 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:red_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:red_silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:red_silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_silt_shingle_stairs.json new file mode 100644 index 00000000..0ddbd66e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:red_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:red_silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:red_silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_silt_shingle_wall.json new file mode 100644 index 00000000..5784ec48 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:red_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:red_silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:red_silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_silt_shingles.json new file mode 100644 index 00000000..4880dd4f --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/red_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:red_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:red_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:red_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/rhyolite.json new file mode 100644 index 00000000..c488c027 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/rhyolite.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz", + "has_red_sand" + ] + ], + "rewards": { + "recipes": [ + "twigs:rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/rhyolite_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/rhyolite_slab.json new file mode 100644 index 00000000..31cb4ccc --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/rhyolite_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:rhyolite_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:rhyolite_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/rhyolite_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/rhyolite_stairs.json new file mode 100644 index 00000000..b8b1ecdb --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/rhyolite_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:rhyolite_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:rhyolite_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/rhyolite_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/rhyolite_wall.json new file mode 100644 index 00000000..22125447 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/rhyolite_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:rhyolite_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:rhyolite_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/rocky_dirt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/rocky_dirt.json new file mode 100644 index 00000000..59f6b14a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/rocky_dirt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dirt": { + "conditions": { + "items": [ + { + "items": "minecraft:dirt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_pebble": { + "conditions": { + "items": [ + { + "items": "twigs:pebble" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:rocky_dirt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pebble", + "has_dirt" + ] + ], + "rewards": { + "recipes": [ + "twigs:rocky_dirt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/schist.json new file mode 100644 index 00000000..d214bfd7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/schist.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_clay_ball": { + "conditions": { + "items": [ + { + "items": "minecraft:clay_ball" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sand", + "has_clay_ball" + ] + ], + "rewards": { + "recipes": [ + "twigs:schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/schist_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/schist_slab.json new file mode 100644 index 00000000..71ce6f27 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/schist_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_schist": { + "conditions": { + "items": [ + { + "items": "twigs:schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:schist_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:schist_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/schist_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/schist_stairs.json new file mode 100644 index 00000000..27d03e84 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/schist_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_schist": { + "conditions": { + "items": [ + { + "items": "twigs:schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:schist_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:schist_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/schist_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/schist_wall.json new file mode 100644 index 00000000..fe0ab437 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/schist_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_schist": { + "conditions": { + "items": [ + { + "items": "twigs:schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:schist_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:schist_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt.json new file mode 100644 index 00000000..9afadcaa --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_clay": { + "conditions": { + "items": [ + { + "items": "minecraft:clay" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt": { + "conditions": { + "items": [ + { + "items": "twigs:silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_clay", + "has_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_brick_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_brick_slab.json new file mode 100644 index 00000000..b5224ca7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:silt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:silt_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:silt_brick_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_brick_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_brick_stairs.json new file mode 100644 index 00000000..80728a1e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:silt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:silt_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:silt_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_brick_trail.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_brick_trail.json new file mode 100644 index 00000000..c6d089f0 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_brick_trail.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_brick_trail": { + "conditions": { + "items": [ + { + "items": "twigs:silt_brick_trail" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:silt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:silt_brick_trail" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_bricks", + "has_silt_brick_trail" + ] + ], + "rewards": { + "recipes": [ + "twigs:silt_brick_trail" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_brick_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_brick_wall.json new file mode 100644 index 00000000..79fb28aa --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:silt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:silt_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:silt_brick_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_bricks.json new file mode 100644 index 00000000..349a15db --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_bricks.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_brick": { + "conditions": { + "items": [ + { + "items": "twigs:silt_brick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:silt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:silt_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_brick", + "has_silt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:silt_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_from_silt_ball.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_from_silt_ball.json new file mode 100644 index 00000000..3abff701 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_from_silt_ball.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt": { + "conditions": { + "items": [ + { + "items": "twigs:silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_ball": { + "conditions": { + "items": [ + { + "items": "twigs:silt_ball" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:silt_from_silt_ball" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_ball", + "has_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:silt_from_silt_ball" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_pot.json new file mode 100644 index 00000000..74636858 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt": { + "conditions": { + "items": [ + { + "items": "twigs:silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_shingle_slab.json new file mode 100644 index 00000000..0f138b6e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_shingle_stairs.json new file mode 100644 index 00000000..e19d137e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_shingle_wall.json new file mode 100644 index 00000000..7db950ba --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_shingles.json new file mode 100644 index 00000000..6a9c219b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_bricks_from_bricks_smelting.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_bricks_from_bricks_smelting.json new file mode 100644 index 00000000..e262de82 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_bricks_from_bricks_smelting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smelting/cracked_bricks_from_bricks_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:smelting/cracked_bricks_from_bricks_smelting" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_cobblestone_bricks_from_cobblestone_bricks_smelting.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_cobblestone_bricks_from_cobblestone_bricks_smelting.json new file mode 100644 index 00000000..a4be0fa1 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_cobblestone_bricks_from_cobblestone_bricks_smelting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:cobblestone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smelting/cracked_cobblestone_bricks_from_cobblestone_bricks_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:smelting/cracked_cobblestone_bricks_from_cobblestone_bricks_smelting" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_polished_bloodstone_bricks_from_polished_bloodstone_bricks_smelting.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_polished_bloodstone_bricks_from_polished_bloodstone_bricks_smelting.json new file mode 100644 index 00000000..a95776b0 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_polished_bloodstone_bricks_from_polished_bloodstone_bricks_smelting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_bloodstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_bloodstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smelting/cracked_polished_bloodstone_bricks_from_polished_bloodstone_bricks_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_bloodstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:smelting/cracked_polished_bloodstone_bricks_from_polished_bloodstone_bricks_smelting" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_polished_calcite_bricks_from_polished_calcite_bricks_smelting.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_polished_calcite_bricks_from_polished_calcite_bricks_smelting.json new file mode 100644 index 00000000..80fe7744 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_polished_calcite_bricks_from_polished_calcite_bricks_smelting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_calcite_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_calcite_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smelting/cracked_polished_calcite_bricks_from_polished_calcite_bricks_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_calcite_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:smelting/cracked_polished_calcite_bricks_from_polished_calcite_bricks_smelting" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_polished_rhyolite_bricks_from_polished_rhyolite_bricks_smelting.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_polished_rhyolite_bricks_from_polished_rhyolite_bricks_smelting.json new file mode 100644 index 00000000..fcdf2988 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_polished_rhyolite_bricks_from_polished_rhyolite_bricks_smelting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_rhyolite_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_rhyolite_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smelting/cracked_polished_rhyolite_bricks_from_polished_rhyolite_bricks_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_rhyolite_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:smelting/cracked_polished_rhyolite_bricks_from_polished_rhyolite_bricks_smelting" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_polished_schist_bricks_from_polished_schist_bricks_smelting.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_polished_schist_bricks_from_polished_schist_bricks_smelting.json new file mode 100644 index 00000000..e6b02525 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_polished_schist_bricks_from_polished_schist_bricks_smelting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_schist_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_schist_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smelting/cracked_polished_schist_bricks_from_polished_schist_bricks_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_schist_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:smelting/cracked_polished_schist_bricks_from_polished_schist_bricks_smelting" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_polished_tuff_bricks_from_polished_tuff_bricks_smelting.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_polished_tuff_bricks_from_polished_tuff_bricks_smelting.json new file mode 100644 index 00000000..2660ff5d --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_polished_tuff_bricks_from_polished_tuff_bricks_smelting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smelting/cracked_polished_tuff_bricks_from_polished_tuff_bricks_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:smelting/cracked_polished_tuff_bricks_from_polished_tuff_bricks_smelting" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_silt_bricks_from_silt_bricks_smelting.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_silt_bricks_from_silt_bricks_smelting.json new file mode 100644 index 00000000..c5ab1d7b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/cracked_silt_bricks_from_silt_bricks_smelting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:silt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smelting/cracked_silt_bricks_from_silt_bricks_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:smelting/cracked_silt_bricks_from_silt_bricks_smelting" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/silt_brick_from_silt_ball_smelting.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/silt_brick_from_silt_ball_smelting.json new file mode 100644 index 00000000..18e00695 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smelting/silt_brick_from_silt_ball_smelting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_ball": { + "conditions": { + "items": [ + { + "items": "twigs:silt_ball" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smelting/silt_brick_from_silt_ball_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_ball" + ] + ], + "rewards": { + "recipes": [ + "twigs:smelting/silt_brick_from_silt_ball_smelting" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_basalt_brick_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_basalt_brick_slab.json new file mode 100644 index 00000000..840a22ff --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_basalt_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_basalt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:smooth_basalt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smooth_basalt_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_basalt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:smooth_basalt_brick_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_basalt_brick_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_basalt_brick_stairs.json new file mode 100644 index 00000000..7606b318 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_basalt_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_basalt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:smooth_basalt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smooth_basalt_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_basalt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:smooth_basalt_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_basalt_brick_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_basalt_brick_wall.json new file mode 100644 index 00000000..a35d1eb1 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_basalt_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_basalt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:smooth_basalt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smooth_basalt_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_basalt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:smooth_basalt_brick_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_basalt_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_basalt_bricks.json new file mode 100644 index 00000000..9760775f --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_basalt_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_basalt": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_basalt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smooth_basalt_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_basalt" + ] + ], + "rewards": { + "recipes": [ + "twigs:smooth_basalt_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_stone_brick_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_stone_brick_slab.json new file mode 100644 index 00000000..356c7f19 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_stone_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:smooth_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smooth_stone_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:smooth_stone_brick_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_stone_brick_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_stone_brick_stairs.json new file mode 100644 index 00000000..7668964f --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_stone_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:smooth_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smooth_stone_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:smooth_stone_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_stone_brick_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_stone_brick_wall.json new file mode 100644 index 00000000..dd3b9280 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_stone_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:smooth_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smooth_stone_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:smooth_stone_brick_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_stone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_stone_bricks.json new file mode 100644 index 00000000..6d33bebe --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/smooth_stone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:smooth_stone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone" + ] + ], + "rewards": { + "recipes": [ + "twigs:smooth_stone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/soul_lamp.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/soul_lamp.json new file mode 100644 index 00000000..e05faf04 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/soul_lamp.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_soul_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:soul_sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_soul_torch": { + "conditions": { + "items": [ + { + "items": "minecraft:soul_torch" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:soul_lamp" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot", + "has_soul_torch", + "has_soul_sand" + ] + ], + "rewards": { + "recipes": [ + "twigs:soul_lamp" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/spruce_table.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/spruce_table.json new file mode 100644 index 00000000..4454bb12 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/spruce_table.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_spruce_fence": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_fence" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_spruce_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_spruce_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:spruce_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_spruce_slab", + "has_spruce_fence", + "has_spruce_planks" + ] + ], + "rewards": { + "recipes": [ + "twigs:spruce_table" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stone_column.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stone_column.json new file mode 100644 index 00000000..10ec6912 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stone_column.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_stone_column": { + "conditions": { + "items": [ + { + "items": "twigs:stone_column" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stone_column" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone", + "has_stone_column" + ] + ], + "rewards": { + "recipes": [ + "twigs:stone_column" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_slab_from_black_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_slab_from_black_packed_silt.json new file mode 100644 index 00000000..c5b885d4 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_slab_from_black_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:black_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/black_silt_shingle_slab_from_black_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/black_silt_shingle_slab_from_black_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_slab_from_black_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_slab_from_black_silt_shingles.json new file mode 100644 index 00000000..aea1b36a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_slab_from_black_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:black_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/black_silt_shingle_slab_from_black_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/black_silt_shingle_slab_from_black_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_stairs_from_black_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_stairs_from_black_packed_silt.json new file mode 100644 index 00000000..3f2a4d34 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_stairs_from_black_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:black_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/black_silt_shingle_stairs_from_black_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/black_silt_shingle_stairs_from_black_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_stairs_from_black_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_stairs_from_black_silt_shingles.json new file mode 100644 index 00000000..6fa90821 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_stairs_from_black_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:black_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/black_silt_shingle_stairs_from_black_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/black_silt_shingle_stairs_from_black_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_wall_from_black_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_wall_from_black_packed_silt.json new file mode 100644 index 00000000..cb8c1398 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_wall_from_black_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:black_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/black_silt_shingle_wall_from_black_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/black_silt_shingle_wall_from_black_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_wall_from_black_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_wall_from_black_silt_shingles.json new file mode 100644 index 00000000..6c4c9a6c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingle_wall_from_black_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:black_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/black_silt_shingle_wall_from_black_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/black_silt_shingle_wall_from_black_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingles_from_black_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingles_from_black_packed_silt.json new file mode 100644 index 00000000..11f3937c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/black_silt_shingles_from_black_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:black_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/black_silt_shingles_from_black_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/black_silt_shingles_from_black_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blackstone_column_from_blackstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blackstone_column_from_blackstone.json new file mode 100644 index 00000000..75ed1e65 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blackstone_column_from_blackstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/blackstone_column_from_blackstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/blackstone_column_from_blackstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/bloodstone_slab_from_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/bloodstone_slab_from_bloodstone.json new file mode 100644 index 00000000..7c4e4169 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/bloodstone_slab_from_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/bloodstone_slab_from_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/bloodstone_slab_from_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/bloodstone_stairs_from_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/bloodstone_stairs_from_bloodstone.json new file mode 100644 index 00000000..adfe0c3b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/bloodstone_stairs_from_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/bloodstone_stairs_from_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/bloodstone_stairs_from_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/bloodstone_wall_from_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/bloodstone_wall_from_bloodstone.json new file mode 100644 index 00000000..2c549171 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/bloodstone_wall_from_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/bloodstone_wall_from_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/bloodstone_wall_from_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_slab_from_blue_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_slab_from_blue_packed_silt.json new file mode 100644 index 00000000..7402cf37 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_slab_from_blue_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:blue_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/blue_silt_shingle_slab_from_blue_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/blue_silt_shingle_slab_from_blue_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_slab_from_blue_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_slab_from_blue_silt_shingles.json new file mode 100644 index 00000000..34b4bade --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_slab_from_blue_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:blue_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/blue_silt_shingle_slab_from_blue_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/blue_silt_shingle_slab_from_blue_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_stairs_from_blue_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_stairs_from_blue_packed_silt.json new file mode 100644 index 00000000..6078de3d --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_stairs_from_blue_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:blue_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/blue_silt_shingle_stairs_from_blue_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/blue_silt_shingle_stairs_from_blue_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_stairs_from_blue_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_stairs_from_blue_silt_shingles.json new file mode 100644 index 00000000..aaad3f2e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_stairs_from_blue_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:blue_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/blue_silt_shingle_stairs_from_blue_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/blue_silt_shingle_stairs_from_blue_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_wall_from_blue_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_wall_from_blue_packed_silt.json new file mode 100644 index 00000000..c5adbbd6 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_wall_from_blue_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:blue_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/blue_silt_shingle_wall_from_blue_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/blue_silt_shingle_wall_from_blue_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_wall_from_blue_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_wall_from_blue_silt_shingles.json new file mode 100644 index 00000000..b9091d6a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingle_wall_from_blue_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:blue_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/blue_silt_shingle_wall_from_blue_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/blue_silt_shingle_wall_from_blue_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingles_from_blue_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingles_from_blue_packed_silt.json new file mode 100644 index 00000000..b3c93bd5 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/blue_silt_shingles_from_blue_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:blue_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/blue_silt_shingles_from_blue_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/blue_silt_shingles_from_blue_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brick_trail_from_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brick_trail_from_bricks.json new file mode 100644 index 00000000..1c8ad524 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brick_trail_from_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/brick_trail_from_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/brick_trail_from_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_slab_from_brown_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_slab_from_brown_packed_silt.json new file mode 100644 index 00000000..cb9a544b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_slab_from_brown_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:brown_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/brown_silt_shingle_slab_from_brown_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/brown_silt_shingle_slab_from_brown_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_slab_from_brown_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_slab_from_brown_silt_shingles.json new file mode 100644 index 00000000..12daca7d --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_slab_from_brown_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:brown_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/brown_silt_shingle_slab_from_brown_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/brown_silt_shingle_slab_from_brown_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_stairs_from_brown_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_stairs_from_brown_packed_silt.json new file mode 100644 index 00000000..bdee87a7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_stairs_from_brown_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:brown_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/brown_silt_shingle_stairs_from_brown_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/brown_silt_shingle_stairs_from_brown_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_stairs_from_brown_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_stairs_from_brown_silt_shingles.json new file mode 100644 index 00000000..9cfde2ff --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_stairs_from_brown_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:brown_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/brown_silt_shingle_stairs_from_brown_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/brown_silt_shingle_stairs_from_brown_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_wall_from_brown_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_wall_from_brown_packed_silt.json new file mode 100644 index 00000000..72da7fcf --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_wall_from_brown_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:brown_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/brown_silt_shingle_wall_from_brown_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/brown_silt_shingle_wall_from_brown_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_wall_from_brown_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_wall_from_brown_silt_shingles.json new file mode 100644 index 00000000..639b904f --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingle_wall_from_brown_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:brown_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/brown_silt_shingle_wall_from_brown_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/brown_silt_shingle_wall_from_brown_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingles_from_brown_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingles_from_brown_packed_silt.json new file mode 100644 index 00000000..cf746c55 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/brown_silt_shingles_from_brown_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:brown_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/brown_silt_shingles_from_brown_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/brown_silt_shingles_from_brown_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/calcite_slab_from_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/calcite_slab_from_calcite.json new file mode 100644 index 00000000..c1333540 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/calcite_slab_from_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_calcite": { + "conditions": { + "items": [ + { + "items": "minecraft:calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/calcite_slab_from_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/calcite_slab_from_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/calcite_stairs_from_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/calcite_stairs_from_calcite.json new file mode 100644 index 00000000..b5c0072c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/calcite_stairs_from_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_calcite": { + "conditions": { + "items": [ + { + "items": "minecraft:calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/calcite_stairs_from_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/calcite_stairs_from_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/calcite_wall_from_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/calcite_wall_from_calcite.json new file mode 100644 index 00000000..6c2e60fa --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/calcite_wall_from_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_calcite": { + "conditions": { + "items": [ + { + "items": "minecraft:calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/calcite_wall_from_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/calcite_wall_from_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/chiseled_bricks_from_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/chiseled_bricks_from_bricks.json new file mode 100644 index 00000000..50495a42 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/chiseled_bricks_from_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/chiseled_bricks_from_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/chiseled_bricks_from_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/chiseled_silt_bricks_from_silt_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/chiseled_silt_bricks_from_silt_bricks.json new file mode 100644 index 00000000..a9fa5bd3 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/chiseled_silt_bricks_from_silt_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:silt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/chiseled_silt_bricks_from_silt_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/chiseled_silt_bricks_from_silt_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/chiseled_smooth_basalt_bricks_from_smooth_basalt_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/chiseled_smooth_basalt_bricks_from_smooth_basalt_bricks.json new file mode 100644 index 00000000..6c974a1e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/chiseled_smooth_basalt_bricks_from_smooth_basalt_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_basalt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:smooth_basalt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/chiseled_smooth_basalt_bricks_from_smooth_basalt_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_basalt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/chiseled_smooth_basalt_bricks_from_smooth_basalt_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_slab_from_cobblestone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_slab_from_cobblestone.json new file mode 100644 index 00000000..9a6b8a9c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_slab_from_cobblestone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/cobblestone_brick_slab_from_cobblestone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/cobblestone_brick_slab_from_cobblestone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_slab_from_cobblestone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_slab_from_cobblestone_bricks.json new file mode 100644 index 00000000..c514fa97 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_slab_from_cobblestone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:cobblestone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/cobblestone_brick_slab_from_cobblestone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/cobblestone_brick_slab_from_cobblestone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_stairs_from_cobblestone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_stairs_from_cobblestone.json new file mode 100644 index 00000000..a9bb3306 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_stairs_from_cobblestone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/cobblestone_brick_stairs_from_cobblestone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/cobblestone_brick_stairs_from_cobblestone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_stairs_from_cobblestone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_stairs_from_cobblestone_bricks.json new file mode 100644 index 00000000..2b3ebf0d --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_stairs_from_cobblestone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:cobblestone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/cobblestone_brick_stairs_from_cobblestone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/cobblestone_brick_stairs_from_cobblestone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_wall_from_cobblestone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_wall_from_cobblestone.json new file mode 100644 index 00000000..8d2c3624 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_wall_from_cobblestone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/cobblestone_brick_wall_from_cobblestone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/cobblestone_brick_wall_from_cobblestone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_wall_from_cobblestone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_wall_from_cobblestone_bricks.json new file mode 100644 index 00000000..9277e546 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_brick_wall_from_cobblestone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:cobblestone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/cobblestone_brick_wall_from_cobblestone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/cobblestone_brick_wall_from_cobblestone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_bricks_from_cobblestone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_bricks_from_cobblestone.json new file mode 100644 index 00000000..0d770287 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cobblestone_bricks_from_cobblestone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/cobblestone_bricks_from_cobblestone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/cobblestone_bricks_from_cobblestone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/copper_pillar_from_copper_block.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/copper_pillar_from_copper_block.json new file mode 100644 index 00000000..566f0c22 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/copper_pillar_from_copper_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/copper_pillar_from_copper_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/copper_pillar_from_copper_block" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/copper_pillar_from_cut_copper_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/copper_pillar_from_cut_copper_slab.json new file mode 100644 index 00000000..03afea2c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/copper_pillar_from_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/copper_pillar_from_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/copper_pillar_from_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cut_amethyst_from_amethyst_block.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cut_amethyst_from_amethyst_block.json new file mode 100644 index 00000000..a8d532ff --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cut_amethyst_from_amethyst_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_amethyst_block": { + "conditions": { + "items": [ + { + "items": "minecraft:amethyst_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/cut_amethyst_from_amethyst_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_amethyst_block" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/cut_amethyst_from_amethyst_block" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cut_amethyst_from_polished_amethyst.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cut_amethyst_from_polished_amethyst.json new file mode 100644 index 00000000..683eb874 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cut_amethyst_from_polished_amethyst.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_amethyst": { + "conditions": { + "items": [ + { + "items": "twigs:polished_amethyst" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/cut_amethyst_from_polished_amethyst" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_amethyst" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/cut_amethyst_from_polished_amethyst" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_slab_from_cyan_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_slab_from_cyan_packed_silt.json new file mode 100644 index 00000000..3138b123 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_slab_from_cyan_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:cyan_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/cyan_silt_shingle_slab_from_cyan_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/cyan_silt_shingle_slab_from_cyan_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_slab_from_cyan_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_slab_from_cyan_silt_shingles.json new file mode 100644 index 00000000..82a39f5a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_slab_from_cyan_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:cyan_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/cyan_silt_shingle_slab_from_cyan_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/cyan_silt_shingle_slab_from_cyan_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_stairs_from_cyan_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_stairs_from_cyan_packed_silt.json new file mode 100644 index 00000000..7d0a89f8 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_stairs_from_cyan_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:cyan_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/cyan_silt_shingle_stairs_from_cyan_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/cyan_silt_shingle_stairs_from_cyan_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_stairs_from_cyan_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_stairs_from_cyan_silt_shingles.json new file mode 100644 index 00000000..4df9f0b2 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_stairs_from_cyan_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:cyan_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/cyan_silt_shingle_stairs_from_cyan_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/cyan_silt_shingle_stairs_from_cyan_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_wall_from_cyan_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_wall_from_cyan_packed_silt.json new file mode 100644 index 00000000..e753ad80 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_wall_from_cyan_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:cyan_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/cyan_silt_shingle_wall_from_cyan_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/cyan_silt_shingle_wall_from_cyan_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_wall_from_cyan_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_wall_from_cyan_silt_shingles.json new file mode 100644 index 00000000..9537bc75 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingle_wall_from_cyan_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:cyan_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/cyan_silt_shingle_wall_from_cyan_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/cyan_silt_shingle_wall_from_cyan_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingles_from_cyan_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingles_from_cyan_packed_silt.json new file mode 100644 index 00000000..6b50a3b6 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/cyan_silt_shingles_from_cyan_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:cyan_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/cyan_silt_shingles_from_cyan_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/cyan_silt_shingles_from_cyan_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/deepslate_column_from_deepslate.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/deepslate_column_from_deepslate.json new file mode 100644 index 00000000..7cb14d3e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/deepslate_column_from_deepslate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/deepslate_column_from_deepslate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/deepslate_column_from_deepslate" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/exposed_copper_pillar_from_exposed_copper.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/exposed_copper_pillar_from_exposed_copper.json new file mode 100644 index 00000000..0bbfa66f --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/exposed_copper_pillar_from_exposed_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/exposed_copper_pillar_from_exposed_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/exposed_copper_pillar_from_exposed_copper" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/exposed_copper_pillar_from_exposed_cut_copper_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/exposed_copper_pillar_from_exposed_cut_copper_slab.json new file mode 100644 index 00000000..1640e228 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/exposed_copper_pillar_from_exposed_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/exposed_copper_pillar_from_exposed_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/exposed_copper_pillar_from_exposed_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_slab_from_gray_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_slab_from_gray_packed_silt.json new file mode 100644 index 00000000..b80b5355 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_slab_from_gray_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:gray_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/gray_silt_shingle_slab_from_gray_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/gray_silt_shingle_slab_from_gray_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_slab_from_gray_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_slab_from_gray_silt_shingles.json new file mode 100644 index 00000000..5edbc992 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_slab_from_gray_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:gray_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/gray_silt_shingle_slab_from_gray_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/gray_silt_shingle_slab_from_gray_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_stairs_from_gray_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_stairs_from_gray_packed_silt.json new file mode 100644 index 00000000..b3abd9c1 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_stairs_from_gray_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:gray_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/gray_silt_shingle_stairs_from_gray_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/gray_silt_shingle_stairs_from_gray_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_stairs_from_gray_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_stairs_from_gray_silt_shingles.json new file mode 100644 index 00000000..87e29aaa --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_stairs_from_gray_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:gray_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/gray_silt_shingle_stairs_from_gray_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/gray_silt_shingle_stairs_from_gray_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_wall_from_gray_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_wall_from_gray_packed_silt.json new file mode 100644 index 00000000..7c943adf --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_wall_from_gray_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:gray_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/gray_silt_shingle_wall_from_gray_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/gray_silt_shingle_wall_from_gray_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_wall_from_gray_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_wall_from_gray_silt_shingles.json new file mode 100644 index 00000000..1eec5876 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingle_wall_from_gray_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:gray_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/gray_silt_shingle_wall_from_gray_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/gray_silt_shingle_wall_from_gray_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingles_from_gray_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingles_from_gray_packed_silt.json new file mode 100644 index 00000000..f4a8b604 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/gray_silt_shingles_from_gray_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:gray_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/gray_silt_shingles_from_gray_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/gray_silt_shingles_from_gray_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_slab_from_green_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_slab_from_green_packed_silt.json new file mode 100644 index 00000000..7218e558 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_slab_from_green_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:green_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/green_silt_shingle_slab_from_green_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/green_silt_shingle_slab_from_green_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_slab_from_green_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_slab_from_green_silt_shingles.json new file mode 100644 index 00000000..ba582b79 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_slab_from_green_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:green_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/green_silt_shingle_slab_from_green_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/green_silt_shingle_slab_from_green_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_stairs_from_green_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_stairs_from_green_packed_silt.json new file mode 100644 index 00000000..84a2d519 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_stairs_from_green_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:green_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/green_silt_shingle_stairs_from_green_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/green_silt_shingle_stairs_from_green_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_stairs_from_green_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_stairs_from_green_silt_shingles.json new file mode 100644 index 00000000..236698a3 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_stairs_from_green_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:green_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/green_silt_shingle_stairs_from_green_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/green_silt_shingle_stairs_from_green_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_wall_from_green_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_wall_from_green_packed_silt.json new file mode 100644 index 00000000..e9c58dfd --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_wall_from_green_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:green_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/green_silt_shingle_wall_from_green_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/green_silt_shingle_wall_from_green_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_wall_from_green_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_wall_from_green_silt_shingles.json new file mode 100644 index 00000000..c92a6224 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingle_wall_from_green_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:green_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/green_silt_shingle_wall_from_green_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/green_silt_shingle_wall_from_green_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingles_from_green_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingles_from_green_packed_silt.json new file mode 100644 index 00000000..3b59495d --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/green_silt_shingles_from_green_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:green_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/green_silt_shingles_from_green_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/green_silt_shingles_from_green_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_slab_from_light_blue_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_slab_from_light_blue_packed_silt.json new file mode 100644 index 00000000..94511884 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_slab_from_light_blue_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:light_blue_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/light_blue_silt_shingle_slab_from_light_blue_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/light_blue_silt_shingle_slab_from_light_blue_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_slab_from_light_blue_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_slab_from_light_blue_silt_shingles.json new file mode 100644 index 00000000..fc100948 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_slab_from_light_blue_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:light_blue_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/light_blue_silt_shingle_slab_from_light_blue_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/light_blue_silt_shingle_slab_from_light_blue_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_stairs_from_light_blue_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_stairs_from_light_blue_packed_silt.json new file mode 100644 index 00000000..6f2747ef --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_stairs_from_light_blue_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:light_blue_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/light_blue_silt_shingle_stairs_from_light_blue_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/light_blue_silt_shingle_stairs_from_light_blue_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_stairs_from_light_blue_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_stairs_from_light_blue_silt_shingles.json new file mode 100644 index 00000000..04786280 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_stairs_from_light_blue_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:light_blue_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/light_blue_silt_shingle_stairs_from_light_blue_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/light_blue_silt_shingle_stairs_from_light_blue_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_wall_from_light_blue_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_wall_from_light_blue_packed_silt.json new file mode 100644 index 00000000..066ce24b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_wall_from_light_blue_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:light_blue_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/light_blue_silt_shingle_wall_from_light_blue_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/light_blue_silt_shingle_wall_from_light_blue_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_wall_from_light_blue_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_wall_from_light_blue_silt_shingles.json new file mode 100644 index 00000000..c9319f53 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingle_wall_from_light_blue_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:light_blue_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/light_blue_silt_shingle_wall_from_light_blue_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/light_blue_silt_shingle_wall_from_light_blue_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingles_from_light_blue_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingles_from_light_blue_packed_silt.json new file mode 100644 index 00000000..8f33c4ec --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_blue_silt_shingles_from_light_blue_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:light_blue_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/light_blue_silt_shingles_from_light_blue_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/light_blue_silt_shingles_from_light_blue_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_slab_from_light_gray_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_slab_from_light_gray_packed_silt.json new file mode 100644 index 00000000..f1e16ac7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_slab_from_light_gray_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:light_gray_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/light_gray_silt_shingle_slab_from_light_gray_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/light_gray_silt_shingle_slab_from_light_gray_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_slab_from_light_gray_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_slab_from_light_gray_silt_shingles.json new file mode 100644 index 00000000..95803534 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_slab_from_light_gray_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:light_gray_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/light_gray_silt_shingle_slab_from_light_gray_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/light_gray_silt_shingle_slab_from_light_gray_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_stairs_from_light_gray_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_stairs_from_light_gray_packed_silt.json new file mode 100644 index 00000000..06b7f2c4 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_stairs_from_light_gray_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:light_gray_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/light_gray_silt_shingle_stairs_from_light_gray_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/light_gray_silt_shingle_stairs_from_light_gray_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_stairs_from_light_gray_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_stairs_from_light_gray_silt_shingles.json new file mode 100644 index 00000000..3192516e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_stairs_from_light_gray_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:light_gray_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/light_gray_silt_shingle_stairs_from_light_gray_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/light_gray_silt_shingle_stairs_from_light_gray_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_wall_from_light_gray_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_wall_from_light_gray_packed_silt.json new file mode 100644 index 00000000..00edc5b1 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_wall_from_light_gray_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:light_gray_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/light_gray_silt_shingle_wall_from_light_gray_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/light_gray_silt_shingle_wall_from_light_gray_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_wall_from_light_gray_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_wall_from_light_gray_silt_shingles.json new file mode 100644 index 00000000..ec0c21a1 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingle_wall_from_light_gray_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:light_gray_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/light_gray_silt_shingle_wall_from_light_gray_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/light_gray_silt_shingle_wall_from_light_gray_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingles_from_light_gray_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingles_from_light_gray_packed_silt.json new file mode 100644 index 00000000..850d9ac1 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/light_gray_silt_shingles_from_light_gray_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:light_gray_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/light_gray_silt_shingles_from_light_gray_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/light_gray_silt_shingles_from_light_gray_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_slab_from_lime_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_slab_from_lime_packed_silt.json new file mode 100644 index 00000000..4a843577 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_slab_from_lime_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:lime_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/lime_silt_shingle_slab_from_lime_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/lime_silt_shingle_slab_from_lime_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_slab_from_lime_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_slab_from_lime_silt_shingles.json new file mode 100644 index 00000000..adf877e1 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_slab_from_lime_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:lime_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/lime_silt_shingle_slab_from_lime_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/lime_silt_shingle_slab_from_lime_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_stairs_from_lime_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_stairs_from_lime_packed_silt.json new file mode 100644 index 00000000..f42a5f39 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_stairs_from_lime_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:lime_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/lime_silt_shingle_stairs_from_lime_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/lime_silt_shingle_stairs_from_lime_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_stairs_from_lime_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_stairs_from_lime_silt_shingles.json new file mode 100644 index 00000000..eda55c80 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_stairs_from_lime_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:lime_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/lime_silt_shingle_stairs_from_lime_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/lime_silt_shingle_stairs_from_lime_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_wall_from_lime_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_wall_from_lime_packed_silt.json new file mode 100644 index 00000000..7520fa09 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_wall_from_lime_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:lime_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/lime_silt_shingle_wall_from_lime_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/lime_silt_shingle_wall_from_lime_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_wall_from_lime_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_wall_from_lime_silt_shingles.json new file mode 100644 index 00000000..ddfa2da5 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingle_wall_from_lime_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:lime_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/lime_silt_shingle_wall_from_lime_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/lime_silt_shingle_wall_from_lime_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingles_from_lime_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingles_from_lime_packed_silt.json new file mode 100644 index 00000000..2097fd68 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/lime_silt_shingles_from_lime_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:lime_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/lime_silt_shingles_from_lime_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/lime_silt_shingles_from_lime_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_slab_from_magenta_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_slab_from_magenta_packed_silt.json new file mode 100644 index 00000000..bea0da24 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_slab_from_magenta_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:magenta_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/magenta_silt_shingle_slab_from_magenta_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/magenta_silt_shingle_slab_from_magenta_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_slab_from_magenta_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_slab_from_magenta_silt_shingles.json new file mode 100644 index 00000000..62b5eb01 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_slab_from_magenta_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:magenta_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/magenta_silt_shingle_slab_from_magenta_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/magenta_silt_shingle_slab_from_magenta_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_stairs_from_magenta_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_stairs_from_magenta_packed_silt.json new file mode 100644 index 00000000..95e1e020 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_stairs_from_magenta_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:magenta_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/magenta_silt_shingle_stairs_from_magenta_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/magenta_silt_shingle_stairs_from_magenta_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_stairs_from_magenta_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_stairs_from_magenta_silt_shingles.json new file mode 100644 index 00000000..a17c3e6c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_stairs_from_magenta_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:magenta_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/magenta_silt_shingle_stairs_from_magenta_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/magenta_silt_shingle_stairs_from_magenta_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_wall_from_magenta_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_wall_from_magenta_packed_silt.json new file mode 100644 index 00000000..1cbf4f88 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_wall_from_magenta_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:magenta_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/magenta_silt_shingle_wall_from_magenta_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/magenta_silt_shingle_wall_from_magenta_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_wall_from_magenta_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_wall_from_magenta_silt_shingles.json new file mode 100644 index 00000000..e2b5d4ee --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingle_wall_from_magenta_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:magenta_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/magenta_silt_shingle_wall_from_magenta_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/magenta_silt_shingle_wall_from_magenta_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingles_from_magenta_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingles_from_magenta_packed_silt.json new file mode 100644 index 00000000..3303efa6 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/magenta_silt_shingles_from_magenta_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:magenta_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/magenta_silt_shingles_from_magenta_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/magenta_silt_shingles_from_magenta_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mixed_bricks_from_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mixed_bricks_from_bricks.json new file mode 100644 index 00000000..02f358b0 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mixed_bricks_from_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/mixed_bricks_from_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/mixed_bricks_from_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mixed_silt_bricks_from_silt_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mixed_silt_bricks_from_silt_bricks.json new file mode 100644 index 00000000..e2086584 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mixed_silt_bricks_from_silt_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:silt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/mixed_silt_bricks_from_silt_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/mixed_silt_bricks_from_silt_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_brick_slab_from_mossy_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_brick_slab_from_mossy_bricks.json new file mode 100644 index 00000000..2c718e19 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_brick_slab_from_mossy_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:mossy_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/mossy_brick_slab_from_mossy_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/mossy_brick_slab_from_mossy_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_brick_stairs_from_mossy_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_brick_stairs_from_mossy_bricks.json new file mode 100644 index 00000000..fdc636d0 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_brick_stairs_from_mossy_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:mossy_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/mossy_brick_stairs_from_mossy_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/mossy_brick_stairs_from_mossy_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_brick_wall_from_mossy_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_brick_wall_from_mossy_bricks.json new file mode 100644 index 00000000..9b3a43b8 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_brick_wall_from_mossy_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:mossy_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/mossy_brick_wall_from_mossy_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/mossy_brick_wall_from_mossy_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_slab_from_mossy_cobblestone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_slab_from_mossy_cobblestone.json new file mode 100644 index 00000000..f6444463 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_slab_from_mossy_cobblestone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/mossy_cobblestone_brick_slab_from_mossy_cobblestone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/mossy_cobblestone_brick_slab_from_mossy_cobblestone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_slab_from_mossy_cobblestone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_slab_from_mossy_cobblestone_bricks.json new file mode 100644 index 00000000..5e8134a1 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_slab_from_mossy_cobblestone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:mossy_cobblestone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/mossy_cobblestone_brick_slab_from_mossy_cobblestone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/mossy_cobblestone_brick_slab_from_mossy_cobblestone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_stairs_from_mossy_cobblestone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_stairs_from_mossy_cobblestone.json new file mode 100644 index 00000000..230b8901 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_stairs_from_mossy_cobblestone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/mossy_cobblestone_brick_stairs_from_mossy_cobblestone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/mossy_cobblestone_brick_stairs_from_mossy_cobblestone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_stairs_from_mossy_cobblestone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_stairs_from_mossy_cobblestone_bricks.json new file mode 100644 index 00000000..6df87cec --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_stairs_from_mossy_cobblestone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:mossy_cobblestone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/mossy_cobblestone_brick_stairs_from_mossy_cobblestone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/mossy_cobblestone_brick_stairs_from_mossy_cobblestone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_wall_from_mossy_cobblestone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_wall_from_mossy_cobblestone.json new file mode 100644 index 00000000..17150f1a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_wall_from_mossy_cobblestone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/mossy_cobblestone_brick_wall_from_mossy_cobblestone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/mossy_cobblestone_brick_wall_from_mossy_cobblestone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_wall_from_mossy_cobblestone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_wall_from_mossy_cobblestone_bricks.json new file mode 100644 index 00000000..2d7433f6 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_brick_wall_from_mossy_cobblestone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:mossy_cobblestone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/mossy_cobblestone_brick_wall_from_mossy_cobblestone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/mossy_cobblestone_brick_wall_from_mossy_cobblestone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_bricks_from_mossy_cobblestone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_bricks_from_mossy_cobblestone.json new file mode 100644 index 00000000..2bb11c50 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/mossy_cobblestone_bricks_from_mossy_cobblestone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/mossy_cobblestone_bricks_from_mossy_cobblestone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/mossy_cobblestone_bricks_from_mossy_cobblestone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_slab_from_orange_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_slab_from_orange_packed_silt.json new file mode 100644 index 00000000..a2d3175b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_slab_from_orange_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:orange_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/orange_silt_shingle_slab_from_orange_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/orange_silt_shingle_slab_from_orange_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_slab_from_orange_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_slab_from_orange_silt_shingles.json new file mode 100644 index 00000000..31847ecd --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_slab_from_orange_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:orange_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/orange_silt_shingle_slab_from_orange_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/orange_silt_shingle_slab_from_orange_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_stairs_from_orange_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_stairs_from_orange_packed_silt.json new file mode 100644 index 00000000..7536f9d9 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_stairs_from_orange_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:orange_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/orange_silt_shingle_stairs_from_orange_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/orange_silt_shingle_stairs_from_orange_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_stairs_from_orange_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_stairs_from_orange_silt_shingles.json new file mode 100644 index 00000000..99fc6b19 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_stairs_from_orange_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:orange_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/orange_silt_shingle_stairs_from_orange_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/orange_silt_shingle_stairs_from_orange_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_wall_from_orange_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_wall_from_orange_packed_silt.json new file mode 100644 index 00000000..bc22cb5c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_wall_from_orange_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:orange_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/orange_silt_shingle_wall_from_orange_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/orange_silt_shingle_wall_from_orange_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_wall_from_orange_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_wall_from_orange_silt_shingles.json new file mode 100644 index 00000000..36836428 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingle_wall_from_orange_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:orange_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/orange_silt_shingle_wall_from_orange_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/orange_silt_shingle_wall_from_orange_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingles_from_orange_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingles_from_orange_packed_silt.json new file mode 100644 index 00000000..617d57d1 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/orange_silt_shingles_from_orange_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:orange_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/orange_silt_shingles_from_orange_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/orange_silt_shingles_from_orange_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/oxidized_copper_pillar_from_oxidized_copper.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/oxidized_copper_pillar_from_oxidized_copper.json new file mode 100644 index 00000000..f5915cf5 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/oxidized_copper_pillar_from_oxidized_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/oxidized_copper_pillar_from_oxidized_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/oxidized_copper_pillar_from_oxidized_copper" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/oxidized_copper_pillar_from_oxidized_cut_copper_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/oxidized_copper_pillar_from_oxidized_cut_copper_slab.json new file mode 100644 index 00000000..9a0a5992 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/oxidized_copper_pillar_from_oxidized_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/oxidized_copper_pillar_from_oxidized_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/oxidized_copper_pillar_from_oxidized_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_slab_from_pink_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_slab_from_pink_packed_silt.json new file mode 100644 index 00000000..07e21a0e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_slab_from_pink_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:pink_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/pink_silt_shingle_slab_from_pink_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/pink_silt_shingle_slab_from_pink_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_slab_from_pink_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_slab_from_pink_silt_shingles.json new file mode 100644 index 00000000..48fb8c8b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_slab_from_pink_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:pink_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/pink_silt_shingle_slab_from_pink_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/pink_silt_shingle_slab_from_pink_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_stairs_from_pink_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_stairs_from_pink_packed_silt.json new file mode 100644 index 00000000..3a49fa4e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_stairs_from_pink_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:pink_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/pink_silt_shingle_stairs_from_pink_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/pink_silt_shingle_stairs_from_pink_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_stairs_from_pink_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_stairs_from_pink_silt_shingles.json new file mode 100644 index 00000000..65906f0b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_stairs_from_pink_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:pink_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/pink_silt_shingle_stairs_from_pink_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/pink_silt_shingle_stairs_from_pink_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_wall_from_pink_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_wall_from_pink_packed_silt.json new file mode 100644 index 00000000..e0ad77e3 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_wall_from_pink_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:pink_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/pink_silt_shingle_wall_from_pink_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/pink_silt_shingle_wall_from_pink_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_wall_from_pink_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_wall_from_pink_silt_shingles.json new file mode 100644 index 00000000..e3898988 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingle_wall_from_pink_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:pink_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/pink_silt_shingle_wall_from_pink_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/pink_silt_shingle_wall_from_pink_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingles_from_pink_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingles_from_pink_packed_silt.json new file mode 100644 index 00000000..bc173690 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/pink_silt_shingles_from_pink_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:pink_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/pink_silt_shingles_from_pink_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/pink_silt_shingles_from_pink_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_amethyst_from_amethyst_block.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_amethyst_from_amethyst_block.json new file mode 100644 index 00000000..e102e771 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_amethyst_from_amethyst_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_amethyst_block": { + "conditions": { + "items": [ + { + "items": "minecraft:amethyst_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_amethyst_from_amethyst_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_amethyst_block" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_amethyst_from_amethyst_block" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_basalt_bricks_from_polished_basalt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_basalt_bricks_from_polished_basalt.json new file mode 100644 index 00000000..877f30e7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_basalt_bricks_from_polished_basalt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_basalt": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_basalt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_basalt_bricks_from_polished_basalt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_basalt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_basalt_bricks_from_polished_basalt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_slab_from_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_slab_from_bloodstone.json new file mode 100644 index 00000000..25a1a01a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_slab_from_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_bloodstone_brick_slab_from_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_bloodstone_brick_slab_from_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_slab_from_polished_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_slab_from_polished_bloodstone.json new file mode 100644 index 00000000..c2d30615 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_slab_from_polished_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:polished_bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_bloodstone_brick_slab_from_polished_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_bloodstone_brick_slab_from_polished_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_slab_from_polished_bloodstone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_slab_from_polished_bloodstone_bricks.json new file mode 100644 index 00000000..45bbc33e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_slab_from_polished_bloodstone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_bloodstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_bloodstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_bloodstone_brick_slab_from_polished_bloodstone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_bloodstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_bloodstone_brick_slab_from_polished_bloodstone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_stairs_from_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_stairs_from_bloodstone.json new file mode 100644 index 00000000..617f7350 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_stairs_from_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_bloodstone_brick_stairs_from_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_bloodstone_brick_stairs_from_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_stairs_from_polished_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_stairs_from_polished_bloodstone.json new file mode 100644 index 00000000..7020d5b3 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_stairs_from_polished_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:polished_bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_bloodstone_brick_stairs_from_polished_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_bloodstone_brick_stairs_from_polished_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_stairs_from_polished_bloodstone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_stairs_from_polished_bloodstone_bricks.json new file mode 100644 index 00000000..a5d6af23 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_stairs_from_polished_bloodstone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_bloodstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_bloodstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_bloodstone_brick_stairs_from_polished_bloodstone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_bloodstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_bloodstone_brick_stairs_from_polished_bloodstone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_wall_from_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_wall_from_bloodstone.json new file mode 100644 index 00000000..b674b67d --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_wall_from_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_bloodstone_brick_wall_from_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_bloodstone_brick_wall_from_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_wall_from_polished_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_wall_from_polished_bloodstone.json new file mode 100644 index 00000000..3cec329a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_wall_from_polished_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:polished_bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_bloodstone_brick_wall_from_polished_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_bloodstone_brick_wall_from_polished_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_wall_from_polished_bloodstone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_wall_from_polished_bloodstone_bricks.json new file mode 100644 index 00000000..6f2a11aa --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_brick_wall_from_polished_bloodstone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_bloodstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_bloodstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_bloodstone_brick_wall_from_polished_bloodstone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_bloodstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_bloodstone_brick_wall_from_polished_bloodstone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_bricks_from_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_bricks_from_bloodstone.json new file mode 100644 index 00000000..293fbe8e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_bricks_from_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_bloodstone_bricks_from_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_bloodstone_bricks_from_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_bricks_from_polished_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_bricks_from_polished_bloodstone.json new file mode 100644 index 00000000..8933efaf --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_bricks_from_polished_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:polished_bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_bloodstone_bricks_from_polished_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_bloodstone_bricks_from_polished_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_from_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_from_bloodstone.json new file mode 100644 index 00000000..19f65017 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_from_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_bloodstone_from_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_bloodstone_from_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_slab_from_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_slab_from_bloodstone.json new file mode 100644 index 00000000..534b4a07 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_slab_from_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_bloodstone_slab_from_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_bloodstone_slab_from_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_slab_from_polished_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_slab_from_polished_bloodstone.json new file mode 100644 index 00000000..df01b677 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_slab_from_polished_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:polished_bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_bloodstone_slab_from_polished_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_bloodstone_slab_from_polished_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_stairs_from_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_stairs_from_bloodstone.json new file mode 100644 index 00000000..9e109f65 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_stairs_from_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_bloodstone_stairs_from_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_bloodstone_stairs_from_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_stairs_from_polished_bloodstone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_stairs_from_polished_bloodstone.json new file mode 100644 index 00000000..6d3f3543 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_bloodstone_stairs_from_polished_bloodstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_bloodstone": { + "conditions": { + "items": [ + { + "items": "twigs:polished_bloodstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_bloodstone_stairs_from_polished_bloodstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_bloodstone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_bloodstone_stairs_from_polished_bloodstone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_slab_from_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_slab_from_calcite.json new file mode 100644 index 00000000..b9b6aba7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_slab_from_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_calcite": { + "conditions": { + "items": [ + { + "items": "minecraft:calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_calcite_brick_slab_from_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_calcite_brick_slab_from_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_slab_from_polished_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_slab_from_polished_calcite.json new file mode 100644 index 00000000..0cc2b49a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_slab_from_polished_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_calcite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_calcite_brick_slab_from_polished_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_calcite_brick_slab_from_polished_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_slab_from_polished_calcite_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_slab_from_polished_calcite_bricks.json new file mode 100644 index 00000000..2713fb53 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_slab_from_polished_calcite_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_calcite_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_calcite_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_calcite_brick_slab_from_polished_calcite_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_calcite_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_calcite_brick_slab_from_polished_calcite_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_stairs_from_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_stairs_from_calcite.json new file mode 100644 index 00000000..247d2215 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_stairs_from_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_calcite": { + "conditions": { + "items": [ + { + "items": "minecraft:calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_calcite_brick_stairs_from_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_calcite_brick_stairs_from_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_stairs_from_polished_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_stairs_from_polished_calcite.json new file mode 100644 index 00000000..085746f0 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_stairs_from_polished_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_calcite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_calcite_brick_stairs_from_polished_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_calcite_brick_stairs_from_polished_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_stairs_from_polished_calcite_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_stairs_from_polished_calcite_bricks.json new file mode 100644 index 00000000..78f7b6a2 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_stairs_from_polished_calcite_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_calcite_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_calcite_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_calcite_brick_stairs_from_polished_calcite_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_calcite_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_calcite_brick_stairs_from_polished_calcite_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_wall_from_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_wall_from_calcite.json new file mode 100644 index 00000000..9a77cf9a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_wall_from_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_calcite": { + "conditions": { + "items": [ + { + "items": "minecraft:calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_calcite_brick_wall_from_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_calcite_brick_wall_from_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_wall_from_polished_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_wall_from_polished_calcite.json new file mode 100644 index 00000000..0ec9e951 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_wall_from_polished_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_calcite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_calcite_brick_wall_from_polished_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_calcite_brick_wall_from_polished_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_wall_from_polished_calcite_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_wall_from_polished_calcite_bricks.json new file mode 100644 index 00000000..dcdc4717 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_brick_wall_from_polished_calcite_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_calcite_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_calcite_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_calcite_brick_wall_from_polished_calcite_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_calcite_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_calcite_brick_wall_from_polished_calcite_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_bricks_from_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_bricks_from_calcite.json new file mode 100644 index 00000000..dd72fb79 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_bricks_from_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_calcite": { + "conditions": { + "items": [ + { + "items": "minecraft:calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_calcite_bricks_from_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_calcite_bricks_from_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_bricks_from_polished_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_bricks_from_polished_calcite.json new file mode 100644 index 00000000..0a8e0dce --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_bricks_from_polished_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_calcite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_calcite_bricks_from_polished_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_calcite_bricks_from_polished_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_from_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_from_calcite.json new file mode 100644 index 00000000..41d46171 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_from_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_calcite": { + "conditions": { + "items": [ + { + "items": "minecraft:calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_calcite_from_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_calcite_from_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_slab_from_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_slab_from_calcite.json new file mode 100644 index 00000000..2dd1ccf2 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_slab_from_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_calcite": { + "conditions": { + "items": [ + { + "items": "minecraft:calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_calcite_slab_from_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_calcite_slab_from_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_slab_from_polished_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_slab_from_polished_calcite.json new file mode 100644 index 00000000..27bb609d --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_slab_from_polished_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_calcite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_calcite_slab_from_polished_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_calcite_slab_from_polished_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_stairs_from_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_stairs_from_calcite.json new file mode 100644 index 00000000..755352e2 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_stairs_from_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_calcite": { + "conditions": { + "items": [ + { + "items": "minecraft:calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_calcite_stairs_from_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_calcite_stairs_from_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_stairs_from_polished_calcite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_stairs_from_polished_calcite.json new file mode 100644 index 00000000..569fb519 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_calcite_stairs_from_polished_calcite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_calcite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_calcite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_calcite_stairs_from_polished_calcite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_calcite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_calcite_stairs_from_polished_calcite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_slab_from_polished_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_slab_from_polished_rhyolite.json new file mode 100644 index 00000000..89e88f79 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_slab_from_polished_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_rhyolite_brick_slab_from_polished_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_rhyolite_brick_slab_from_polished_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_slab_from_polished_rhyolite_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_slab_from_polished_rhyolite_bricks.json new file mode 100644 index 00000000..cc8cdc4e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_slab_from_polished_rhyolite_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_rhyolite_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_rhyolite_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_rhyolite_brick_slab_from_polished_rhyolite_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_rhyolite_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_rhyolite_brick_slab_from_polished_rhyolite_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_slab_from_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_slab_from_rhyolite.json new file mode 100644 index 00000000..d97c2bc4 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_slab_from_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_rhyolite_brick_slab_from_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_rhyolite_brick_slab_from_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_stairs_from_polished_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_stairs_from_polished_rhyolite.json new file mode 100644 index 00000000..96cb8c53 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_stairs_from_polished_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_rhyolite_brick_stairs_from_polished_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_rhyolite_brick_stairs_from_polished_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_stairs_from_polished_rhyolite_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_stairs_from_polished_rhyolite_bricks.json new file mode 100644 index 00000000..36060af5 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_stairs_from_polished_rhyolite_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_rhyolite_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_rhyolite_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_rhyolite_brick_stairs_from_polished_rhyolite_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_rhyolite_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_rhyolite_brick_stairs_from_polished_rhyolite_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_stairs_from_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_stairs_from_rhyolite.json new file mode 100644 index 00000000..632d6963 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_stairs_from_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_rhyolite_brick_stairs_from_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_rhyolite_brick_stairs_from_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_wall_from_polished_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_wall_from_polished_rhyolite.json new file mode 100644 index 00000000..b1fc5a06 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_wall_from_polished_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_rhyolite_brick_wall_from_polished_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_rhyolite_brick_wall_from_polished_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_wall_from_polished_rhyolite_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_wall_from_polished_rhyolite_bricks.json new file mode 100644 index 00000000..27e1ba14 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_wall_from_polished_rhyolite_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_rhyolite_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_rhyolite_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_rhyolite_brick_wall_from_polished_rhyolite_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_rhyolite_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_rhyolite_brick_wall_from_polished_rhyolite_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_wall_from_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_wall_from_rhyolite.json new file mode 100644 index 00000000..7178b4d3 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_brick_wall_from_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_rhyolite_brick_wall_from_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_rhyolite_brick_wall_from_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_bricks_from_polished_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_bricks_from_polished_rhyolite.json new file mode 100644 index 00000000..90d7ad39 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_bricks_from_polished_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_rhyolite_bricks_from_polished_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_rhyolite_bricks_from_polished_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_bricks_from_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_bricks_from_rhyolite.json new file mode 100644 index 00000000..3bf28ad8 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_bricks_from_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_rhyolite_bricks_from_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_rhyolite_bricks_from_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_from_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_from_rhyolite.json new file mode 100644 index 00000000..cd410d2b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_from_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_rhyolite_from_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_rhyolite_from_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_slab_from_polished_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_slab_from_polished_rhyolite.json new file mode 100644 index 00000000..3020890a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_slab_from_polished_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_rhyolite_slab_from_polished_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_rhyolite_slab_from_polished_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_slab_from_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_slab_from_rhyolite.json new file mode 100644 index 00000000..a4592874 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_slab_from_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_rhyolite_slab_from_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_rhyolite_slab_from_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_stairs_from_polished_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_stairs_from_polished_rhyolite.json new file mode 100644 index 00000000..6ea55f63 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_stairs_from_polished_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:polished_rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_rhyolite_stairs_from_polished_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_rhyolite_stairs_from_polished_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_stairs_from_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_stairs_from_rhyolite.json new file mode 100644 index 00000000..688bfc58 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_rhyolite_stairs_from_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_rhyolite_stairs_from_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_rhyolite_stairs_from_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_slab_from_polished_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_slab_from_polished_schist.json new file mode 100644 index 00000000..d6a848c4 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_slab_from_polished_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_schist": { + "conditions": { + "items": [ + { + "items": "twigs:polished_schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_schist_brick_slab_from_polished_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_schist_brick_slab_from_polished_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_slab_from_polished_schist_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_slab_from_polished_schist_bricks.json new file mode 100644 index 00000000..4e434712 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_slab_from_polished_schist_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_schist_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_schist_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_schist_brick_slab_from_polished_schist_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_schist_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_schist_brick_slab_from_polished_schist_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_slab_from_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_slab_from_schist.json new file mode 100644 index 00000000..4b6e750e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_slab_from_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_schist": { + "conditions": { + "items": [ + { + "items": "twigs:schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_schist_brick_slab_from_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_schist_brick_slab_from_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_stairs_from_polished_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_stairs_from_polished_schist.json new file mode 100644 index 00000000..d28b2427 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_stairs_from_polished_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_schist": { + "conditions": { + "items": [ + { + "items": "twigs:polished_schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_schist_brick_stairs_from_polished_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_schist_brick_stairs_from_polished_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_stairs_from_polished_schist_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_stairs_from_polished_schist_bricks.json new file mode 100644 index 00000000..0a15b991 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_stairs_from_polished_schist_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_schist_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_schist_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_schist_brick_stairs_from_polished_schist_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_schist_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_schist_brick_stairs_from_polished_schist_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_stairs_from_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_stairs_from_schist.json new file mode 100644 index 00000000..9e523a9f --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_stairs_from_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_schist": { + "conditions": { + "items": [ + { + "items": "twigs:schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_schist_brick_stairs_from_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_schist_brick_stairs_from_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_wall_from_polished_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_wall_from_polished_schist.json new file mode 100644 index 00000000..5b11b9d8 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_wall_from_polished_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_schist": { + "conditions": { + "items": [ + { + "items": "twigs:polished_schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_schist_brick_wall_from_polished_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_schist_brick_wall_from_polished_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_wall_from_polished_schist_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_wall_from_polished_schist_bricks.json new file mode 100644 index 00000000..366e50fc --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_wall_from_polished_schist_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_schist_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_schist_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_schist_brick_wall_from_polished_schist_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_schist_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_schist_brick_wall_from_polished_schist_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_wall_from_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_wall_from_schist.json new file mode 100644 index 00000000..f7bf77ff --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_brick_wall_from_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_schist": { + "conditions": { + "items": [ + { + "items": "twigs:schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_schist_brick_wall_from_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_schist_brick_wall_from_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_bricks_from_polished_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_bricks_from_polished_schist.json new file mode 100644 index 00000000..98f009ac --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_bricks_from_polished_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_schist": { + "conditions": { + "items": [ + { + "items": "twigs:polished_schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_schist_bricks_from_polished_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_schist_bricks_from_polished_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_bricks_from_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_bricks_from_schist.json new file mode 100644 index 00000000..8efa314c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_bricks_from_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_schist": { + "conditions": { + "items": [ + { + "items": "twigs:schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_schist_bricks_from_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_schist_bricks_from_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_from_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_from_schist.json new file mode 100644 index 00000000..95e3410e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_from_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_schist": { + "conditions": { + "items": [ + { + "items": "twigs:schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_schist_from_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_schist_from_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_slab_from_polished_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_slab_from_polished_schist.json new file mode 100644 index 00000000..1516c5d4 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_slab_from_polished_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_schist": { + "conditions": { + "items": [ + { + "items": "twigs:polished_schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_schist_slab_from_polished_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_schist_slab_from_polished_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_slab_from_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_slab_from_schist.json new file mode 100644 index 00000000..ff720564 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_slab_from_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_schist": { + "conditions": { + "items": [ + { + "items": "twigs:schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_schist_slab_from_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_schist_slab_from_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_stairs_from_polished_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_stairs_from_polished_schist.json new file mode 100644 index 00000000..32480511 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_stairs_from_polished_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_schist": { + "conditions": { + "items": [ + { + "items": "twigs:polished_schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_schist_stairs_from_polished_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_schist_stairs_from_polished_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_stairs_from_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_stairs_from_schist.json new file mode 100644 index 00000000..73405a00 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_schist_stairs_from_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_schist": { + "conditions": { + "items": [ + { + "items": "twigs:schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_schist_stairs_from_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_schist_stairs_from_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_slab_from_polished_tuff.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_slab_from_polished_tuff.json new file mode 100644 index 00000000..f2bd2ade --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_slab_from_polished_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "twigs:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_tuff_brick_slab_from_polished_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_tuff_brick_slab_from_polished_tuff" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_slab_from_polished_tuff_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_slab_from_polished_tuff_bricks.json new file mode 100644 index 00000000..8f00cbdc --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_slab_from_polished_tuff_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_tuff_brick_slab_from_polished_tuff_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_tuff_brick_slab_from_polished_tuff_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_slab_from_tuff.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_slab_from_tuff.json new file mode 100644 index 00000000..5a5c3ff8 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_slab_from_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_tuff_brick_slab_from_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_tuff_brick_slab_from_tuff" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_stairs_from_polished_tuff.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_stairs_from_polished_tuff.json new file mode 100644 index 00000000..c771701a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_stairs_from_polished_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "twigs:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_tuff_brick_stairs_from_polished_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_tuff_brick_stairs_from_polished_tuff" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_stairs_from_polished_tuff_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_stairs_from_polished_tuff_bricks.json new file mode 100644 index 00000000..bb1cf03a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_stairs_from_polished_tuff_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_tuff_brick_stairs_from_polished_tuff_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_tuff_brick_stairs_from_polished_tuff_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_stairs_from_tuff.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_stairs_from_tuff.json new file mode 100644 index 00000000..d2400915 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_stairs_from_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_tuff_brick_stairs_from_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_tuff_brick_stairs_from_tuff" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_wall_from_polished_tuff.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_wall_from_polished_tuff.json new file mode 100644 index 00000000..3967913c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_wall_from_polished_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "twigs:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_tuff_brick_wall_from_polished_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_tuff_brick_wall_from_polished_tuff" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_wall_from_polished_tuff_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_wall_from_polished_tuff_bricks.json new file mode 100644 index 00000000..ed25cb9e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_wall_from_polished_tuff_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:polished_tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_tuff_brick_wall_from_polished_tuff_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_tuff_brick_wall_from_polished_tuff_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_wall_from_tuff.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_wall_from_tuff.json new file mode 100644 index 00000000..cab0f579 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_brick_wall_from_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_tuff_brick_wall_from_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_tuff_brick_wall_from_tuff" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_bricks_from_polished_tuff.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_bricks_from_polished_tuff.json new file mode 100644 index 00000000..c0b91408 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_bricks_from_polished_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "twigs:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_tuff_bricks_from_polished_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_tuff_bricks_from_polished_tuff" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_bricks_from_tuff.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_bricks_from_tuff.json new file mode 100644 index 00000000..a88b1d63 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_bricks_from_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_tuff_bricks_from_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_tuff_bricks_from_tuff" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_from_tuff.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_from_tuff.json new file mode 100644 index 00000000..b5ca48a3 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_from_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_tuff_from_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_tuff_from_tuff" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_slab_from_polished_tuff.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_slab_from_polished_tuff.json new file mode 100644 index 00000000..406fef13 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_slab_from_polished_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "twigs:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_tuff_slab_from_polished_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_tuff_slab_from_polished_tuff" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_slab_from_tuff.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_slab_from_tuff.json new file mode 100644 index 00000000..07e6043d --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_slab_from_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_tuff_slab_from_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_tuff_slab_from_tuff" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_stairs_from_polished_tuff.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_stairs_from_polished_tuff.json new file mode 100644 index 00000000..2b5e23ac --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_stairs_from_polished_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "twigs:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_tuff_stairs_from_polished_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_tuff_stairs_from_polished_tuff" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_stairs_from_tuff.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_stairs_from_tuff.json new file mode 100644 index 00000000..e3eb6c37 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/polished_tuff_stairs_from_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/polished_tuff_stairs_from_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/polished_tuff_stairs_from_tuff" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_slab_from_purple_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_slab_from_purple_packed_silt.json new file mode 100644 index 00000000..241125fa --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_slab_from_purple_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:purple_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/purple_silt_shingle_slab_from_purple_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/purple_silt_shingle_slab_from_purple_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_slab_from_purple_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_slab_from_purple_silt_shingles.json new file mode 100644 index 00000000..879a873b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_slab_from_purple_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:purple_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/purple_silt_shingle_slab_from_purple_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/purple_silt_shingle_slab_from_purple_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_stairs_from_purple_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_stairs_from_purple_packed_silt.json new file mode 100644 index 00000000..c08d16dd --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_stairs_from_purple_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:purple_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/purple_silt_shingle_stairs_from_purple_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/purple_silt_shingle_stairs_from_purple_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_stairs_from_purple_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_stairs_from_purple_silt_shingles.json new file mode 100644 index 00000000..65ce860a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_stairs_from_purple_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:purple_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/purple_silt_shingle_stairs_from_purple_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/purple_silt_shingle_stairs_from_purple_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_wall_from_purple_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_wall_from_purple_packed_silt.json new file mode 100644 index 00000000..d38a04d3 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_wall_from_purple_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:purple_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/purple_silt_shingle_wall_from_purple_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/purple_silt_shingle_wall_from_purple_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_wall_from_purple_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_wall_from_purple_silt_shingles.json new file mode 100644 index 00000000..fc435f80 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingle_wall_from_purple_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:purple_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/purple_silt_shingle_wall_from_purple_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/purple_silt_shingle_wall_from_purple_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingles_from_purple_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingles_from_purple_packed_silt.json new file mode 100644 index 00000000..b04286ef --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/purple_silt_shingles_from_purple_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:purple_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/purple_silt_shingles_from_purple_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/purple_silt_shingles_from_purple_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/quartz_column_from_quartz_block.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/quartz_column_from_quartz_block.json new file mode 100644 index 00000000..d15431e7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/quartz_column_from_quartz_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/quartz_column_from_quartz_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz_block" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/quartz_column_from_quartz_block" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_slab_from_red_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_slab_from_red_packed_silt.json new file mode 100644 index 00000000..fbee3593 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_slab_from_red_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:red_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/red_silt_shingle_slab_from_red_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/red_silt_shingle_slab_from_red_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_slab_from_red_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_slab_from_red_silt_shingles.json new file mode 100644 index 00000000..9bca53ce --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_slab_from_red_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:red_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/red_silt_shingle_slab_from_red_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/red_silt_shingle_slab_from_red_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_stairs_from_red_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_stairs_from_red_packed_silt.json new file mode 100644 index 00000000..c8b0781b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_stairs_from_red_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:red_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/red_silt_shingle_stairs_from_red_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/red_silt_shingle_stairs_from_red_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_stairs_from_red_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_stairs_from_red_silt_shingles.json new file mode 100644 index 00000000..367e7270 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_stairs_from_red_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:red_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/red_silt_shingle_stairs_from_red_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/red_silt_shingle_stairs_from_red_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_wall_from_red_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_wall_from_red_packed_silt.json new file mode 100644 index 00000000..c8b072ee --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_wall_from_red_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:red_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/red_silt_shingle_wall_from_red_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/red_silt_shingle_wall_from_red_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_wall_from_red_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_wall_from_red_silt_shingles.json new file mode 100644 index 00000000..f01d01d9 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingle_wall_from_red_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:red_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/red_silt_shingle_wall_from_red_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/red_silt_shingle_wall_from_red_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingles_from_red_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingles_from_red_packed_silt.json new file mode 100644 index 00000000..beeee58a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/red_silt_shingles_from_red_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:red_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/red_silt_shingles_from_red_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/red_silt_shingles_from_red_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/rhyolite_slab_from_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/rhyolite_slab_from_rhyolite.json new file mode 100644 index 00000000..2bda6298 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/rhyolite_slab_from_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/rhyolite_slab_from_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/rhyolite_slab_from_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/rhyolite_stairs_from_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/rhyolite_stairs_from_rhyolite.json new file mode 100644 index 00000000..816945be --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/rhyolite_stairs_from_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/rhyolite_stairs_from_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/rhyolite_stairs_from_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/rhyolite_wall_from_rhyolite.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/rhyolite_wall_from_rhyolite.json new file mode 100644 index 00000000..697c1688 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/rhyolite_wall_from_rhyolite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rhyolite": { + "conditions": { + "items": [ + { + "items": "twigs:rhyolite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/rhyolite_wall_from_rhyolite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rhyolite" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/rhyolite_wall_from_rhyolite" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/schist_slab_from_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/schist_slab_from_schist.json new file mode 100644 index 00000000..1c751fd4 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/schist_slab_from_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_schist": { + "conditions": { + "items": [ + { + "items": "twigs:schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/schist_slab_from_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/schist_slab_from_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/schist_stairs_from_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/schist_stairs_from_schist.json new file mode 100644 index 00000000..adfd4683 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/schist_stairs_from_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_schist": { + "conditions": { + "items": [ + { + "items": "twigs:schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/schist_stairs_from_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/schist_stairs_from_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/schist_wall_from_schist.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/schist_wall_from_schist.json new file mode 100644 index 00000000..244044a1 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/schist_wall_from_schist.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_schist": { + "conditions": { + "items": [ + { + "items": "twigs:schist" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/schist_wall_from_schist" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_schist" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/schist_wall_from_schist" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_brick_slab_from_silt_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_brick_slab_from_silt_bricks.json new file mode 100644 index 00000000..75a8be2e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_brick_slab_from_silt_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:silt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/silt_brick_slab_from_silt_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/silt_brick_slab_from_silt_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_brick_stairs_from_silt_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_brick_stairs_from_silt_bricks.json new file mode 100644 index 00000000..2a8aea89 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_brick_stairs_from_silt_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:silt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/silt_brick_stairs_from_silt_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/silt_brick_stairs_from_silt_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_brick_trail_from_silt_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_brick_trail_from_silt_bricks.json new file mode 100644 index 00000000..7d68fdd6 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_brick_trail_from_silt_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:silt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/silt_brick_trail_from_silt_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/silt_brick_trail_from_silt_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_brick_wall_from_silt_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_brick_wall_from_silt_bricks.json new file mode 100644 index 00000000..583c4c68 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_brick_wall_from_silt_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:silt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/silt_brick_wall_from_silt_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/silt_brick_wall_from_silt_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_slab_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_slab_from_packed_silt.json new file mode 100644 index 00000000..5a240bde --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_slab_from_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/silt_shingle_slab_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/silt_shingle_slab_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_slab_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_slab_from_silt_shingles.json new file mode 100644 index 00000000..b777a347 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_slab_from_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/silt_shingle_slab_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/silt_shingle_slab_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_stairs_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_stairs_from_packed_silt.json new file mode 100644 index 00000000..58e05837 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_stairs_from_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/silt_shingle_stairs_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/silt_shingle_stairs_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_stairs_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_stairs_from_silt_shingles.json new file mode 100644 index 00000000..68be1f54 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_stairs_from_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/silt_shingle_stairs_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/silt_shingle_stairs_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_wall_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_wall_from_packed_silt.json new file mode 100644 index 00000000..59c6b973 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_wall_from_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/silt_shingle_wall_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/silt_shingle_wall_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_wall_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_wall_from_silt_shingles.json new file mode 100644 index 00000000..06792ad8 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingle_wall_from_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/silt_shingle_wall_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/silt_shingle_wall_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingles_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingles_from_packed_silt.json new file mode 100644 index 00000000..40fd0839 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/silt_shingles_from_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/silt_shingles_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/silt_shingles_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_slab_from_smooth_basalt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_slab_from_smooth_basalt.json new file mode 100644 index 00000000..e75d00f6 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_slab_from_smooth_basalt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_basalt": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_basalt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/smooth_basalt_brick_slab_from_smooth_basalt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_basalt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/smooth_basalt_brick_slab_from_smooth_basalt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_slab_from_smooth_basalt_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_slab_from_smooth_basalt_bricks.json new file mode 100644 index 00000000..372be6ed --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_slab_from_smooth_basalt_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_basalt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:smooth_basalt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/smooth_basalt_brick_slab_from_smooth_basalt_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_basalt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/smooth_basalt_brick_slab_from_smooth_basalt_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_stairs_from_smooth_basalt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_stairs_from_smooth_basalt.json new file mode 100644 index 00000000..b4fbead9 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_stairs_from_smooth_basalt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_basalt": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_basalt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/smooth_basalt_brick_stairs_from_smooth_basalt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_basalt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/smooth_basalt_brick_stairs_from_smooth_basalt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_stairs_from_smooth_basalt_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_stairs_from_smooth_basalt_bricks.json new file mode 100644 index 00000000..6e1052e7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_stairs_from_smooth_basalt_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_basalt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:smooth_basalt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/smooth_basalt_brick_stairs_from_smooth_basalt_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_basalt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/smooth_basalt_brick_stairs_from_smooth_basalt_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_wall_from_smooth_basalt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_wall_from_smooth_basalt.json new file mode 100644 index 00000000..01d8af6b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_wall_from_smooth_basalt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_basalt": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_basalt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/smooth_basalt_brick_wall_from_smooth_basalt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_basalt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/smooth_basalt_brick_wall_from_smooth_basalt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_wall_from_smooth_basalt_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_wall_from_smooth_basalt_bricks.json new file mode 100644 index 00000000..42f381d2 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_brick_wall_from_smooth_basalt_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_basalt_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:smooth_basalt_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/smooth_basalt_brick_wall_from_smooth_basalt_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_basalt_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/smooth_basalt_brick_wall_from_smooth_basalt_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_bricks_from_smooth_basalt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_bricks_from_smooth_basalt.json new file mode 100644 index 00000000..f63a7492 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_basalt_bricks_from_smooth_basalt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_basalt": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_basalt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/smooth_basalt_bricks_from_smooth_basalt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_basalt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/smooth_basalt_bricks_from_smooth_basalt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_slab_from_smooth_stone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_slab_from_smooth_stone.json new file mode 100644 index 00000000..fe50cc40 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_slab_from_smooth_stone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/smooth_stone_brick_slab_from_smooth_stone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/smooth_stone_brick_slab_from_smooth_stone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_slab_from_smooth_stone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_slab_from_smooth_stone_bricks.json new file mode 100644 index 00000000..92742fc1 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_slab_from_smooth_stone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:smooth_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/smooth_stone_brick_slab_from_smooth_stone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/smooth_stone_brick_slab_from_smooth_stone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_stairs_from_smooth_stone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_stairs_from_smooth_stone.json new file mode 100644 index 00000000..bfc91979 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_stairs_from_smooth_stone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/smooth_stone_brick_stairs_from_smooth_stone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/smooth_stone_brick_stairs_from_smooth_stone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_stairs_from_smooth_stone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_stairs_from_smooth_stone_bricks.json new file mode 100644 index 00000000..eb3af3a7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_stairs_from_smooth_stone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:smooth_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/smooth_stone_brick_stairs_from_smooth_stone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/smooth_stone_brick_stairs_from_smooth_stone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_wall_from_smooth_stone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_wall_from_smooth_stone.json new file mode 100644 index 00000000..b8965eb8 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_wall_from_smooth_stone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/smooth_stone_brick_wall_from_smooth_stone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/smooth_stone_brick_wall_from_smooth_stone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_wall_from_smooth_stone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_wall_from_smooth_stone_bricks.json new file mode 100644 index 00000000..993b07af --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_brick_wall_from_smooth_stone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:smooth_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/smooth_stone_brick_wall_from_smooth_stone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/smooth_stone_brick_wall_from_smooth_stone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_bricks_from_smooth_stone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_bricks_from_smooth_stone.json new file mode 100644 index 00000000..cf14f2a3 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/smooth_stone_bricks_from_smooth_stone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/smooth_stone_bricks_from_smooth_stone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/smooth_stone_bricks_from_smooth_stone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/stone_column_from_stone.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/stone_column_from_stone.json new file mode 100644 index 00000000..c5d4bee9 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/stone_column_from_stone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/stone_column_from_stone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/stone_column_from_stone" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/twisting_polished_blackstone_brick_slab_from_twisting_polished_blackstone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/twisting_polished_blackstone_brick_slab_from_twisting_polished_blackstone_bricks.json new file mode 100644 index 00000000..81cd8d9c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/twisting_polished_blackstone_brick_slab_from_twisting_polished_blackstone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/twisting_polished_blackstone_brick_slab_from_twisting_polished_blackstone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_twisting_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:twisting_polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_twisting_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/twisting_polished_blackstone_brick_slab_from_twisting_polished_blackstone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/twisting_polished_blackstone_brick_stairs_from_twisting_polished_blackstone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/twisting_polished_blackstone_brick_stairs_from_twisting_polished_blackstone_bricks.json new file mode 100644 index 00000000..c7b3dbf9 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/twisting_polished_blackstone_brick_stairs_from_twisting_polished_blackstone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/twisting_polished_blackstone_brick_stairs_from_twisting_polished_blackstone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_twisting_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:twisting_polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_twisting_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/twisting_polished_blackstone_brick_stairs_from_twisting_polished_blackstone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/twisting_polished_blackstone_brick_wall_from_twisting_polished_blackstone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/twisting_polished_blackstone_brick_wall_from_twisting_polished_blackstone_bricks.json new file mode 100644 index 00000000..6c412338 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/twisting_polished_blackstone_brick_wall_from_twisting_polished_blackstone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/twisting_polished_blackstone_brick_wall_from_twisting_polished_blackstone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_twisting_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:twisting_polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_twisting_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/twisting_polished_blackstone_brick_wall_from_twisting_polished_blackstone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_copper_pillar_from_waxed_copper_block.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_copper_pillar_from_waxed_copper_block.json new file mode 100644 index 00000000..897e9a7b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_copper_pillar_from_waxed_copper_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/waxed_copper_pillar_from_waxed_copper_block" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/waxed_copper_pillar_from_waxed_copper_block" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_copper_pillar_from_waxed_cut_copper_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_copper_pillar_from_waxed_cut_copper_slab.json new file mode 100644 index 00000000..d61c7877 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_copper_pillar_from_waxed_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/waxed_copper_pillar_from_waxed_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/waxed_copper_pillar_from_waxed_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_exposed_copper_pillar_from_waxed_exposed_copper.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_exposed_copper_pillar_from_waxed_exposed_copper.json new file mode 100644 index 00000000..9f4b6ae7 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_exposed_copper_pillar_from_waxed_exposed_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/waxed_exposed_copper_pillar_from_waxed_exposed_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/waxed_exposed_copper_pillar_from_waxed_exposed_copper" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_exposed_copper_pillar_from_waxed_exposed_cut_copper_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_exposed_copper_pillar_from_waxed_exposed_cut_copper_slab.json new file mode 100644 index 00000000..a109ba1b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_exposed_copper_pillar_from_waxed_exposed_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/waxed_exposed_copper_pillar_from_waxed_exposed_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/waxed_exposed_copper_pillar_from_waxed_exposed_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_oxidized_copper_pillar_from_waxed_oxidized_copper.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_oxidized_copper_pillar_from_waxed_oxidized_copper.json new file mode 100644 index 00000000..1a2435ed --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_oxidized_copper_pillar_from_waxed_oxidized_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/waxed_oxidized_copper_pillar_from_waxed_oxidized_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/waxed_oxidized_copper_pillar_from_waxed_oxidized_copper" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_oxidized_copper_pillar_from_waxed_oxidized_cut_copper_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_oxidized_copper_pillar_from_waxed_oxidized_cut_copper_slab.json new file mode 100644 index 00000000..0589d63d --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_oxidized_copper_pillar_from_waxed_oxidized_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/waxed_oxidized_copper_pillar_from_waxed_oxidized_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/waxed_oxidized_copper_pillar_from_waxed_oxidized_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_weathered_copper_pillar_from_waxed_weathered_copper.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_weathered_copper_pillar_from_waxed_weathered_copper.json new file mode 100644 index 00000000..4fa50b55 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_weathered_copper_pillar_from_waxed_weathered_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/waxed_weathered_copper_pillar_from_waxed_weathered_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/waxed_weathered_copper_pillar_from_waxed_weathered_copper" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_weathered_copper_pillar_from_waxed_weathered_cut_copper_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_weathered_copper_pillar_from_waxed_weathered_cut_copper_slab.json new file mode 100644 index 00000000..24817479 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/waxed_weathered_copper_pillar_from_waxed_weathered_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/waxed_weathered_copper_pillar_from_waxed_weathered_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/waxed_weathered_copper_pillar_from_waxed_weathered_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/weathered_copper_pillar_from_weathered_copper.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/weathered_copper_pillar_from_weathered_copper.json new file mode 100644 index 00000000..f8ddc9c5 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/weathered_copper_pillar_from_weathered_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/weathered_copper_pillar_from_weathered_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/weathered_copper_pillar_from_weathered_copper" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/weathered_copper_pillar_from_weathered_cut_copper_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/weathered_copper_pillar_from_weathered_cut_copper_slab.json new file mode 100644 index 00000000..2e546c85 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/weathered_copper_pillar_from_weathered_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/weathered_copper_pillar_from_weathered_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/weathered_copper_pillar_from_weathered_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/weeping_polished_blackstone_brick_slab_from_weeping_polished_blackstone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/weeping_polished_blackstone_brick_slab_from_weeping_polished_blackstone_bricks.json new file mode 100644 index 00000000..d009d52e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/weeping_polished_blackstone_brick_slab_from_weeping_polished_blackstone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/weeping_polished_blackstone_brick_slab_from_weeping_polished_blackstone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weeping_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:weeping_polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weeping_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/weeping_polished_blackstone_brick_slab_from_weeping_polished_blackstone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/weeping_polished_blackstone_brick_stairs_from_weeping_polished_blackstone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/weeping_polished_blackstone_brick_stairs_from_weeping_polished_blackstone_bricks.json new file mode 100644 index 00000000..57e84930 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/weeping_polished_blackstone_brick_stairs_from_weeping_polished_blackstone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/weeping_polished_blackstone_brick_stairs_from_weeping_polished_blackstone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weeping_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:weeping_polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weeping_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/weeping_polished_blackstone_brick_stairs_from_weeping_polished_blackstone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/weeping_polished_blackstone_brick_wall_from_weeping_polished_blackstone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/weeping_polished_blackstone_brick_wall_from_weeping_polished_blackstone_bricks.json new file mode 100644 index 00000000..df028a4f --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/weeping_polished_blackstone_brick_wall_from_weeping_polished_blackstone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/weeping_polished_blackstone_brick_wall_from_weeping_polished_blackstone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weeping_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:weeping_polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weeping_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/weeping_polished_blackstone_brick_wall_from_weeping_polished_blackstone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_slab_from_white_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_slab_from_white_packed_silt.json new file mode 100644 index 00000000..faa69a4c --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_slab_from_white_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/white_silt_shingle_slab_from_white_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:white_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/white_silt_shingle_slab_from_white_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_slab_from_white_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_slab_from_white_silt_shingles.json new file mode 100644 index 00000000..15da148d --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_slab_from_white_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/white_silt_shingle_slab_from_white_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:white_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/white_silt_shingle_slab_from_white_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_stairs_from_white_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_stairs_from_white_packed_silt.json new file mode 100644 index 00000000..f42f76bf --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_stairs_from_white_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/white_silt_shingle_stairs_from_white_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:white_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/white_silt_shingle_stairs_from_white_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_stairs_from_white_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_stairs_from_white_silt_shingles.json new file mode 100644 index 00000000..c6db9362 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_stairs_from_white_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/white_silt_shingle_stairs_from_white_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:white_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/white_silt_shingle_stairs_from_white_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_wall_from_white_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_wall_from_white_packed_silt.json new file mode 100644 index 00000000..70876db9 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_wall_from_white_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/white_silt_shingle_wall_from_white_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:white_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/white_silt_shingle_wall_from_white_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_wall_from_white_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_wall_from_white_silt_shingles.json new file mode 100644 index 00000000..91925f0e --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingle_wall_from_white_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/white_silt_shingle_wall_from_white_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:white_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/white_silt_shingle_wall_from_white_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingles_from_white_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingles_from_white_packed_silt.json new file mode 100644 index 00000000..108d8844 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/white_silt_shingles_from_white_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/white_silt_shingles_from_white_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:white_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/white_silt_shingles_from_white_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_slab_from_yellow_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_slab_from_yellow_packed_silt.json new file mode 100644 index 00000000..89970255 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_slab_from_yellow_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/yellow_silt_shingle_slab_from_yellow_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:yellow_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/yellow_silt_shingle_slab_from_yellow_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_slab_from_yellow_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_slab_from_yellow_silt_shingles.json new file mode 100644 index 00000000..35a46647 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_slab_from_yellow_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/yellow_silt_shingle_slab_from_yellow_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:yellow_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/yellow_silt_shingle_slab_from_yellow_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_stairs_from_yellow_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_stairs_from_yellow_packed_silt.json new file mode 100644 index 00000000..6012649f --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_stairs_from_yellow_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/yellow_silt_shingle_stairs_from_yellow_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:yellow_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/yellow_silt_shingle_stairs_from_yellow_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_stairs_from_yellow_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_stairs_from_yellow_silt_shingles.json new file mode 100644 index 00000000..6c8663a9 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_stairs_from_yellow_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/yellow_silt_shingle_stairs_from_yellow_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:yellow_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/yellow_silt_shingle_stairs_from_yellow_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_wall_from_yellow_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_wall_from_yellow_packed_silt.json new file mode 100644 index 00000000..de4a0f03 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_wall_from_yellow_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/yellow_silt_shingle_wall_from_yellow_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:yellow_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/yellow_silt_shingle_wall_from_yellow_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_wall_from_yellow_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_wall_from_yellow_silt_shingles.json new file mode 100644 index 00000000..998fc324 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingle_wall_from_yellow_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/yellow_silt_shingle_wall_from_yellow_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:yellow_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/yellow_silt_shingle_wall_from_yellow_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingles_from_yellow_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingles_from_yellow_packed_silt.json new file mode 100644 index 00000000..1aeee065 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/stonecutting/yellow_silt_shingles_from_yellow_packed_silt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:stonecutting/yellow_silt_shingles_from_yellow_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:yellow_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:stonecutting/yellow_silt_shingles_from_yellow_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/torchflower_paper_lantern.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/torchflower_paper_lantern.json new file mode 100644 index 00000000..7a4a773a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/torchflower_paper_lantern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_paper_lantern": { + "conditions": { + "items": [ + { + "items": "twigs:paper_lantern" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:torchflower_paper_lantern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_paper_lantern" + ] + ], + "rewards": { + "recipes": [ + "twigs:torchflower_paper_lantern" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/twig_to_stick.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/twig_to_stick.json new file mode 100644 index 00000000..315e2afb --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/twig_to_stick.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:twig_to_stick" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_twig": { + "conditions": { + "items": [ + { + "items": "twigs:twig" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_twig" + ] + ], + "rewards": { + "recipes": [ + "twigs:twig_to_stick" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/twisting_polished_blackstone_brick_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/twisting_polished_blackstone_brick_slab.json new file mode 100644 index 00000000..ab19994a --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/twisting_polished_blackstone_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:twisting_polished_blackstone_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_twisting_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:twisting_polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_twisting_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:twisting_polished_blackstone_brick_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/twisting_polished_blackstone_brick_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/twisting_polished_blackstone_brick_stairs.json new file mode 100644 index 00000000..ad667532 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/twisting_polished_blackstone_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:twisting_polished_blackstone_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_twisting_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:twisting_polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_twisting_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:twisting_polished_blackstone_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/twisting_polished_blackstone_brick_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/twisting_polished_blackstone_brick_wall.json new file mode 100644 index 00000000..5e1ce6cf --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/twisting_polished_blackstone_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:twisting_polished_blackstone_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_twisting_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:twisting_polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_twisting_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:twisting_polished_blackstone_brick_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/twisting_polished_blackstone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/twisting_polished_blackstone_bricks.json new file mode 100644 index 00000000..fa443de0 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/twisting_polished_blackstone_bricks.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:twisting_polished_blackstone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_twisting_vines": { + "conditions": { + "items": [ + { + "items": "minecraft:twisting_vines" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_bricks", + "has_twisting_vines" + ] + ], + "rewards": { + "recipes": [ + "twigs:twisting_polished_blackstone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/warped_shroomlamp.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/warped_shroomlamp.json new file mode 100644 index 00000000..e506bc95 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/warped_shroomlamp.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shroomlight": { + "conditions": { + "items": [ + { + "items": "minecraft:shroomlight" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:warped_shroomlamp" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_warped_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_warped_planks", + "has_shroomlight" + ] + ], + "rewards": { + "recipes": [ + "twigs:warped_shroomlamp" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/warped_table.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/warped_table.json new file mode 100644 index 00000000..4be7d28d --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/warped_table.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:warped_table" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_warped_fence": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_fence" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_warped_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_warped_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_warped_slab", + "has_warped_fence", + "has_warped_planks" + ] + ], + "rewards": { + "recipes": [ + "twigs:warped_table" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/waxed_copper_pillar.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/waxed_copper_pillar.json new file mode 100644 index 00000000..cef55d25 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/waxed_copper_pillar.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:waxed_copper_pillar" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_pillar": { + "conditions": { + "items": [ + { + "items": "twigs:waxed_copper_pillar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_waxed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_cut_copper", + "has_waxed_copper_pillar" + ] + ], + "rewards": { + "recipes": [ + "twigs:waxed_copper_pillar" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/waxed_exposed_copper_pillar.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/waxed_exposed_copper_pillar.json new file mode 100644 index 00000000..f0ea53d4 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/waxed_exposed_copper_pillar.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:waxed_exposed_copper_pillar" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper_pillar": { + "conditions": { + "items": [ + { + "items": "twigs:waxed_exposed_copper_pillar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_waxed_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_cut_copper", + "has_waxed_exposed_copper_pillar" + ] + ], + "rewards": { + "recipes": [ + "twigs:waxed_exposed_copper_pillar" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/waxed_oxidized_copper_pillar.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/waxed_oxidized_copper_pillar.json new file mode 100644 index 00000000..c3dd1b95 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/waxed_oxidized_copper_pillar.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:waxed_oxidized_copper_pillar" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper_pillar": { + "conditions": { + "items": [ + { + "items": "twigs:waxed_oxidized_copper_pillar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_waxed_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_cut_copper", + "has_waxed_oxidized_copper_pillar" + ] + ], + "rewards": { + "recipes": [ + "twigs:waxed_oxidized_copper_pillar" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/waxed_weathered_copper_pillar.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/waxed_weathered_copper_pillar.json new file mode 100644 index 00000000..b88f9a90 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/waxed_weathered_copper_pillar.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:waxed_weathered_copper_pillar" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper_pillar": { + "conditions": { + "items": [ + { + "items": "twigs:waxed_weathered_copper_pillar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_waxed_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_cut_copper", + "has_waxed_weathered_copper_pillar" + ] + ], + "rewards": { + "recipes": [ + "twigs:waxed_weathered_copper_pillar" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/weathered_copper_pillar.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/weathered_copper_pillar.json new file mode 100644 index 00000000..b49bad47 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/weathered_copper_pillar.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:weathered_copper_pillar" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_pillar": { + "conditions": { + "items": [ + { + "items": "twigs:weathered_copper_pillar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper", + "has_weathered_copper_pillar" + ] + ], + "rewards": { + "recipes": [ + "twigs:weathered_copper_pillar" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/weeping_polished_blackstone_brick_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/weeping_polished_blackstone_brick_slab.json new file mode 100644 index 00000000..d1ebd856 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/weeping_polished_blackstone_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:weeping_polished_blackstone_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weeping_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:weeping_polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weeping_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:weeping_polished_blackstone_brick_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/weeping_polished_blackstone_brick_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/weeping_polished_blackstone_brick_stairs.json new file mode 100644 index 00000000..99377cd9 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/weeping_polished_blackstone_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:weeping_polished_blackstone_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weeping_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:weeping_polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weeping_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:weeping_polished_blackstone_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/weeping_polished_blackstone_brick_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/weeping_polished_blackstone_brick_wall.json new file mode 100644 index 00000000..2f99d5c4 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/weeping_polished_blackstone_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:weeping_polished_blackstone_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weeping_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "twigs:weeping_polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weeping_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "twigs:weeping_polished_blackstone_brick_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/weeping_polished_blackstone_bricks.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/weeping_polished_blackstone_bricks.json new file mode 100644 index 00000000..2cb558cd --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/weeping_polished_blackstone_bricks.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:weeping_polished_blackstone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weeping_vines": { + "conditions": { + "items": [ + { + "items": "minecraft:weeping_vines" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_bricks", + "has_weeping_vines" + ] + ], + "rewards": { + "recipes": [ + "twigs:weeping_polished_blackstone_bricks" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..7c732799 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_packed_silt_from_packed_silt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:white_packed_silt_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:white_packed_silt_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..276a9b64 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_packed_silt_from_silt_shingles.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:white_packed_silt_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:white_packed_silt_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_silt_pot.json new file mode 100644 index 00000000..ce14e7d6 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_pot": { + "conditions": { + "items": [ + { + "items": "twigs:silt_pot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:white_silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_pot", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:white_silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_silt_shingle_slab.json new file mode 100644 index 00000000..46a3c962 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:white_silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:white_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:white_silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_silt_shingle_stairs.json new file mode 100644 index 00000000..d0d20245 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:white_silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:white_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:white_silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_silt_shingle_wall.json new file mode 100644 index 00000000..7c2febe6 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:white_silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:white_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:white_silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_silt_shingles.json new file mode 100644 index 00000000..7bd30113 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/white_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:white_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:white_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:white_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..2e18e7b6 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_packed_silt_from_packed_silt.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:yellow_packed_silt_from_packed_silt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_silt", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:yellow_packed_silt_from_packed_silt" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..4affd419 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_packed_silt_from_silt_shingles.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:yellow_packed_silt_from_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_shingles", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:yellow_packed_silt_from_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_silt_pot.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_silt_pot.json new file mode 100644 index 00000000..de1df19b --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_silt_pot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_silt_pot": { + "conditions": { + "items": [ + { + "items": "twigs:silt_pot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "twigs:yellow_silt_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silt_pot", + "has_dye" + ] + ], + "rewards": { + "recipes": [ + "twigs:yellow_silt_pot" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_silt_shingle_slab.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_silt_shingle_slab.json new file mode 100644 index 00000000..ad9a7a81 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_silt_shingle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:yellow_silt_shingle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:yellow_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:yellow_silt_shingle_slab" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_silt_shingle_stairs.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_silt_shingle_stairs.json new file mode 100644 index 00000000..c1bdfb13 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_silt_shingle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:yellow_silt_shingle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:yellow_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:yellow_silt_shingle_stairs" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_silt_shingle_wall.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_silt_shingle_wall.json new file mode 100644 index 00000000..ecd3edb4 --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_silt_shingle_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:yellow_silt_shingle_wall" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_silt_shingles": { + "conditions": { + "items": [ + { + "items": "twigs:yellow_silt_shingles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_silt_shingles" + ] + ], + "rewards": { + "recipes": [ + "twigs:yellow_silt_shingle_wall" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_silt_shingles.json b/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_silt_shingles.json new file mode 100644 index 00000000..f7bda60f --- /dev/null +++ b/src/main/generated/data/twigs/advancement/recipes/building_blocks/yellow_silt_shingles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "twigs:yellow_silt_shingles" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_packed_silt": { + "conditions": { + "items": [ + { + "items": "twigs:yellow_packed_silt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_packed_silt" + ] + ], + "rewards": { + "recipes": [ + "twigs:yellow_silt_shingles" + ] + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/acacia_table.json b/src/main/generated/data/twigs/loot_table/blocks/acacia_table.json new file mode 100644 index 00000000..a82660cd --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/acacia_table.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:acacia_table" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/allium_paper_lantern.json b/src/main/generated/data/twigs/loot_table/blocks/allium_paper_lantern.json new file mode 100644 index 00000000..6acba8fc --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/allium_paper_lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:allium_paper_lantern" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/azalea_flowers.json b/src/main/generated/data/twigs/loot_table/blocks/azalea_flowers.json new file mode 100644 index 00000000..258a7ac2 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/azalea_flowers.json @@ -0,0 +1,109 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": true, + "conditions": [ + { + "block": "twigs:azalea_flowers", + "condition": "minecraft:block_state_property", + "properties": { + "down": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "twigs:azalea_flowers", + "condition": "minecraft:block_state_property", + "properties": { + "up": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "twigs:azalea_flowers", + "condition": "minecraft:block_state_property", + "properties": { + "north": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "twigs:azalea_flowers", + "condition": "minecraft:block_state_property", + "properties": { + "south": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "twigs:azalea_flowers", + "condition": "minecraft:block_state_property", + "properties": { + "west": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "twigs:azalea_flowers", + "condition": "minecraft:block_state_property", + "properties": { + "east": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + }, + { + "add": true, + "count": -1.0, + "function": "minecraft:set_count" + } + ], + "name": "twigs:azalea_flowers" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/bamboo_leaves.json b/src/main/generated/data/twigs/loot_table/blocks/bamboo_leaves.json new file mode 100644 index 00000000..d613c56a --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/bamboo_leaves.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": {} + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:bamboo_leaves", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "twigs:bamboo_leaves", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "twigs:bamboo_leaves", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + } + ], + "name": "twigs:bamboo_leaves" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/bamboo_mat.json b/src/main/generated/data/twigs/loot_table/blocks/bamboo_mat.json new file mode 100644 index 00000000..9ac0eb82 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/bamboo_mat.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:bamboo_mat" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/bamboo_table.json b/src/main/generated/data/twigs/loot_table/blocks/bamboo_table.json new file mode 100644 index 00000000..9441fd5a --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/bamboo_table.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:bamboo_table" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/bamboo_thatch.json b/src/main/generated/data/twigs/loot_table/blocks/bamboo_thatch.json similarity index 100% rename from src/main/resources/data/twigs/loot_tables/blocks/bamboo_thatch.json rename to src/main/generated/data/twigs/loot_table/blocks/bamboo_thatch.json diff --git a/src/main/resources/data/twigs/loot_tables/blocks/bamboo_thatch_slab.json b/src/main/generated/data/twigs/loot_table/blocks/bamboo_thatch_slab.json similarity index 100% rename from src/main/resources/data/twigs/loot_tables/blocks/bamboo_thatch_slab.json rename to src/main/generated/data/twigs/loot_table/blocks/bamboo_thatch_slab.json diff --git a/src/main/generated/data/twigs/loot_table/blocks/birch_table.json b/src/main/generated/data/twigs/loot_table/blocks/birch_table.json new file mode 100644 index 00000000..d3775265 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/birch_table.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:birch_table" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/black_packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/black_packed_silt.json similarity index 83% rename from src/main/resources/data/twigs/loot_tables/blocks/black_packed_silt.json rename to src/main/generated/data/twigs/loot_table/blocks/black_packed_silt.json index 34d33dd2..98cd1436 100644 --- a/src/main/resources/data/twigs/loot_tables/blocks/black_packed_silt.json +++ b/src/main/generated/data/twigs/loot_table/blocks/black_packed_silt.json @@ -2,18 +2,19 @@ "type": "minecraft:block", "pools": [ { - "rolls": 1, + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], "entries": [ { "type": "minecraft:item", "name": "twigs:black_packed_silt" } ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] + "rolls": 1.0 } ] -} +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/black_silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/black_silt_pot.json new file mode 100644 index 00000000..2e248b6b --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/black_silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:black_silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/black_silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/black_silt_shingle_slab.json new file mode 100644 index 00000000..ed9042ce --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/black_silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:black_silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:black_silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/black_silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/black_silt_shingle_stairs.json new file mode 100644 index 00000000..f3c5559b --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/black_silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:black_silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/black_silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/black_silt_shingle_wall.json new file mode 100644 index 00000000..b89abc69 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/black_silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:black_silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/black_silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/black_silt_shingles.json new file mode 100644 index 00000000..a0ffed9b --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/black_silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:black_silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/blackstone_column.json b/src/main/generated/data/twigs/loot_table/blocks/blackstone_column.json new file mode 100644 index 00000000..5a135456 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/blackstone_column.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:blackstone_column" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/bloodstone.json b/src/main/generated/data/twigs/loot_table/blocks/bloodstone.json new file mode 100644 index 00000000..b835d935 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/bloodstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:bloodstone" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/bloodstone_slab.json b/src/main/generated/data/twigs/loot_table/blocks/bloodstone_slab.json new file mode 100644 index 00000000..9f6e3b29 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/bloodstone_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:bloodstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:bloodstone_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/bloodstone_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/bloodstone_stairs.json new file mode 100644 index 00000000..de948ff5 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/bloodstone_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:bloodstone_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/bloodstone_wall.json b/src/main/generated/data/twigs/loot_table/blocks/bloodstone_wall.json new file mode 100644 index 00000000..ab84fd8b --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/bloodstone_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:bloodstone_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/blue_orchid_paper_lantern.json b/src/main/generated/data/twigs/loot_table/blocks/blue_orchid_paper_lantern.json new file mode 100644 index 00000000..d9d1c68d --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/blue_orchid_paper_lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:blue_orchid_paper_lantern" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/blue_packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/blue_packed_silt.json new file mode 100644 index 00000000..936ae139 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/blue_packed_silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:blue_packed_silt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/blue_silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/blue_silt_pot.json new file mode 100644 index 00000000..a32ee35e --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/blue_silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:blue_silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/blue_silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/blue_silt_shingle_slab.json new file mode 100644 index 00000000..42248c51 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/blue_silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:blue_silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:blue_silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/blue_silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/blue_silt_shingle_stairs.json new file mode 100644 index 00000000..c67e189f --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/blue_silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:blue_silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/blue_silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/blue_silt_shingle_wall.json new file mode 100644 index 00000000..d1b973a2 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/blue_silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:blue_silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/blue_silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/blue_silt_shingles.json new file mode 100644 index 00000000..7d339238 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/blue_silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:blue_silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/brick_trail.json b/src/main/generated/data/twigs/loot_table/blocks/brick_trail.json new file mode 100644 index 00000000..23370017 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/brick_trail.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:brick_trail" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/bronzed_seashell.json b/src/main/generated/data/twigs/loot_table/blocks/bronzed_seashell.json similarity index 83% rename from src/main/resources/data/twigs/loot_tables/blocks/bronzed_seashell.json rename to src/main/generated/data/twigs/loot_table/blocks/bronzed_seashell.json index d095ec09..3278266a 100644 --- a/src/main/resources/data/twigs/loot_tables/blocks/bronzed_seashell.json +++ b/src/main/generated/data/twigs/loot_table/blocks/bronzed_seashell.json @@ -2,18 +2,19 @@ "type": "minecraft:block", "pools": [ { - "rolls": 1, + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], "entries": [ { "type": "minecraft:item", "name": "twigs:bronzed_seashell" } ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] + "rolls": 1.0 } ] -} +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/brown_packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/brown_packed_silt.json new file mode 100644 index 00000000..4d1fd1d5 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/brown_packed_silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:brown_packed_silt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/brown_silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/brown_silt_pot.json new file mode 100644 index 00000000..6d57830d --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/brown_silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:brown_silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/brown_silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/brown_silt_shingle_slab.json new file mode 100644 index 00000000..53237485 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/brown_silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:brown_silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:brown_silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/brown_silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/brown_silt_shingle_stairs.json new file mode 100644 index 00000000..3d3a9e6d --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/brown_silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:brown_silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/brown_silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/brown_silt_shingle_wall.json new file mode 100644 index 00000000..8fa11356 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/brown_silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:brown_silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/brown_silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/brown_silt_shingles.json new file mode 100644 index 00000000..ba064800 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/brown_silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:brown_silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/calcite_slab.json b/src/main/generated/data/twigs/loot_table/blocks/calcite_slab.json new file mode 100644 index 00000000..37779243 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/calcite_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:calcite_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:calcite_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/calcite_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/calcite_stairs.json new file mode 100644 index 00000000..e1809bb5 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/calcite_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:calcite_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/calcite_wall.json b/src/main/generated/data/twigs/loot_table/blocks/calcite_wall.json new file mode 100644 index 00000000..55a91d5c --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/calcite_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:calcite_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cherry_table.json b/src/main/generated/data/twigs/loot_table/blocks/cherry_table.json new file mode 100644 index 00000000..14b8991a --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cherry_table.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cherry_table" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/chiseled_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/chiseled_bricks.json new file mode 100644 index 00000000..daeabade --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/chiseled_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:chiseled_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/chiseled_silt_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/chiseled_silt_bricks.json new file mode 100644 index 00000000..e547068d --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/chiseled_silt_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:chiseled_silt_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/chiseled_smooth_basalt_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/chiseled_smooth_basalt_bricks.json new file mode 100644 index 00000000..0f5c46b0 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/chiseled_smooth_basalt_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:chiseled_smooth_basalt_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cobblestone_brick_slab.json b/src/main/generated/data/twigs/loot_table/blocks/cobblestone_brick_slab.json new file mode 100644 index 00000000..ffbb862a --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cobblestone_brick_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:cobblestone_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:cobblestone_brick_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cobblestone_brick_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/cobblestone_brick_stairs.json new file mode 100644 index 00000000..e44db647 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cobblestone_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cobblestone_brick_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cobblestone_brick_wall.json b/src/main/generated/data/twigs/loot_table/blocks/cobblestone_brick_wall.json new file mode 100644 index 00000000..87bd806c --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cobblestone_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cobblestone_brick_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cobblestone_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/cobblestone_bricks.json new file mode 100644 index 00000000..1331538f --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cobblestone_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cobblestone_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/compacted_dripstone.json b/src/main/generated/data/twigs/loot_table/blocks/compacted_dripstone.json new file mode 100644 index 00000000..625b545c --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/compacted_dripstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:compacted_dripstone" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/copper_pillar.json b/src/main/generated/data/twigs/loot_table/blocks/copper_pillar.json similarity index 100% rename from src/main/resources/data/twigs/loot_tables/blocks/copper_pillar.json rename to src/main/generated/data/twigs/loot_table/blocks/copper_pillar.json diff --git a/src/main/generated/data/twigs/loot_table/blocks/cracked_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/cracked_bricks.json new file mode 100644 index 00000000..c3d1b940 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cracked_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cracked_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cracked_cobblestone_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/cracked_cobblestone_bricks.json new file mode 100644 index 00000000..3a396d9a --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cracked_cobblestone_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cracked_cobblestone_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cracked_polished_bloodstone_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/cracked_polished_bloodstone_bricks.json new file mode 100644 index 00000000..2e1e7f16 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cracked_polished_bloodstone_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cracked_polished_bloodstone_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cracked_polished_calcite_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/cracked_polished_calcite_bricks.json new file mode 100644 index 00000000..44c65c2b --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cracked_polished_calcite_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cracked_polished_calcite_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cracked_polished_rhyolite_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/cracked_polished_rhyolite_bricks.json new file mode 100644 index 00000000..c782375c --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cracked_polished_rhyolite_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cracked_polished_rhyolite_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cracked_polished_schist_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/cracked_polished_schist_bricks.json new file mode 100644 index 00000000..a11ce6c8 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cracked_polished_schist_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cracked_polished_schist_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cracked_polished_tuff_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/cracked_polished_tuff_bricks.json new file mode 100644 index 00000000..9e4db585 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cracked_polished_tuff_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cracked_polished_tuff_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cracked_silt_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/cracked_silt_bricks.json new file mode 100644 index 00000000..65018820 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cracked_silt_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cracked_silt_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/crimson_roots_paper_lantern.json b/src/main/generated/data/twigs/loot_table/blocks/crimson_roots_paper_lantern.json new file mode 100644 index 00000000..e814facb --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/crimson_roots_paper_lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:crimson_roots_paper_lantern" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/crimson_shroomlamp.json b/src/main/generated/data/twigs/loot_table/blocks/crimson_shroomlamp.json new file mode 100644 index 00000000..d978b6ee --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/crimson_shroomlamp.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:crimson_shroomlamp" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/crimson_table.json b/src/main/generated/data/twigs/loot_table/blocks/crimson_table.json new file mode 100644 index 00000000..21fbbaaa --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/crimson_table.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:crimson_table" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cut_amethyst.json b/src/main/generated/data/twigs/loot_table/blocks/cut_amethyst.json new file mode 100644 index 00000000..2aa37802 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cut_amethyst.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cut_amethyst" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cyan_packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/cyan_packed_silt.json new file mode 100644 index 00000000..6842b6c0 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cyan_packed_silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cyan_packed_silt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cyan_silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/cyan_silt_pot.json new file mode 100644 index 00000000..2bc5f0f9 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cyan_silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:cyan_silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cyan_silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/cyan_silt_shingle_slab.json new file mode 100644 index 00000000..2339d183 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cyan_silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:cyan_silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:cyan_silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cyan_silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/cyan_silt_shingle_stairs.json new file mode 100644 index 00000000..fdfe2669 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cyan_silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cyan_silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cyan_silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/cyan_silt_shingle_wall.json new file mode 100644 index 00000000..cfede14a --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cyan_silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cyan_silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/cyan_silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/cyan_silt_shingles.json new file mode 100644 index 00000000..0c2813ff --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/cyan_silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:cyan_silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/dandelion_paper_lantern.json b/src/main/generated/data/twigs/loot_table/blocks/dandelion_paper_lantern.json new file mode 100644 index 00000000..8dd47414 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/dandelion_paper_lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:dandelion_paper_lantern" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/dark_oak_table.json b/src/main/generated/data/twigs/loot_table/blocks/dark_oak_table.json new file mode 100644 index 00000000..7915b8f2 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/dark_oak_table.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:dark_oak_table" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/deepslate_column.json b/src/main/generated/data/twigs/loot_table/blocks/deepslate_column.json new file mode 100644 index 00000000..1ab3bd44 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/deepslate_column.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:deepslate_column" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/exposed_copper_pillar.json b/src/main/generated/data/twigs/loot_table/blocks/exposed_copper_pillar.json similarity index 100% rename from src/main/resources/data/twigs/loot_tables/blocks/exposed_copper_pillar.json rename to src/main/generated/data/twigs/loot_table/blocks/exposed_copper_pillar.json diff --git a/src/main/generated/data/twigs/loot_table/blocks/gravel_brick_slab.json b/src/main/generated/data/twigs/loot_table/blocks/gravel_brick_slab.json new file mode 100644 index 00000000..28fe993b --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/gravel_brick_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:gravel_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:gravel_brick_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/gravel_brick_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/gravel_brick_stairs.json new file mode 100644 index 00000000..071e9def --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/gravel_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:gravel_brick_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/gravel_brick_wall.json b/src/main/generated/data/twigs/loot_table/blocks/gravel_brick_wall.json new file mode 100644 index 00000000..e3acc52b --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/gravel_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:gravel_brick_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/gravel_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/gravel_bricks.json new file mode 100644 index 00000000..4d08d6ca --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/gravel_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:gravel_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/gray_packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/gray_packed_silt.json new file mode 100644 index 00000000..c1b3d8df --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/gray_packed_silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:gray_packed_silt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/gray_silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/gray_silt_pot.json new file mode 100644 index 00000000..35c3990d --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/gray_silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:gray_silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/gray_silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/gray_silt_shingle_slab.json new file mode 100644 index 00000000..19d86513 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/gray_silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:gray_silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:gray_silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/gray_silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/gray_silt_shingle_stairs.json new file mode 100644 index 00000000..83fc8318 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/gray_silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:gray_silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/gray_silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/gray_silt_shingle_wall.json new file mode 100644 index 00000000..c5ed749f --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/gray_silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:gray_silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/gray_silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/gray_silt_shingles.json new file mode 100644 index 00000000..a4cf47ce --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/gray_silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:gray_silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/green_packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/green_packed_silt.json new file mode 100644 index 00000000..9330ea4b --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/green_packed_silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:green_packed_silt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/green_silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/green_silt_pot.json new file mode 100644 index 00000000..57d282d5 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/green_silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:green_silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/green_silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/green_silt_shingle_slab.json new file mode 100644 index 00000000..82c64033 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/green_silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:green_silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:green_silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/green_silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/green_silt_shingle_stairs.json new file mode 100644 index 00000000..160eab10 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/green_silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:green_silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/green_silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/green_silt_shingle_wall.json new file mode 100644 index 00000000..dff2124f --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/green_silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:green_silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/green_silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/green_silt_shingles.json new file mode 100644 index 00000000..fdd6b740 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/green_silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:green_silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/jungle_table.json b/src/main/generated/data/twigs/loot_table/blocks/jungle_table.json new file mode 100644 index 00000000..9e6f53f4 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/jungle_table.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:jungle_table" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/lamp.json b/src/main/generated/data/twigs/loot_table/blocks/lamp.json new file mode 100644 index 00000000..d04e7071 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/lamp.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:lamp" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/light_blue_packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/light_blue_packed_silt.json new file mode 100644 index 00000000..ab4ffc26 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/light_blue_packed_silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:light_blue_packed_silt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/light_blue_silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/light_blue_silt_pot.json new file mode 100644 index 00000000..3f8531fc --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/light_blue_silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:light_blue_silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/light_blue_silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/light_blue_silt_shingle_slab.json new file mode 100644 index 00000000..b55f4880 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/light_blue_silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:light_blue_silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:light_blue_silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/light_blue_silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/light_blue_silt_shingle_stairs.json new file mode 100644 index 00000000..bb78627d --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/light_blue_silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:light_blue_silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/light_blue_silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/light_blue_silt_shingle_wall.json new file mode 100644 index 00000000..1a3af055 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/light_blue_silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:light_blue_silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/light_blue_silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/light_blue_silt_shingles.json new file mode 100644 index 00000000..10af3e7c --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/light_blue_silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:light_blue_silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/light_gray_packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/light_gray_packed_silt.json new file mode 100644 index 00000000..921911a4 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/light_gray_packed_silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:light_gray_packed_silt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/light_gray_silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/light_gray_silt_pot.json new file mode 100644 index 00000000..09e45b4e --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/light_gray_silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:light_gray_silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/light_gray_silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/light_gray_silt_shingle_slab.json new file mode 100644 index 00000000..b76fbc1e --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/light_gray_silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:light_gray_silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:light_gray_silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/light_gray_silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/light_gray_silt_shingle_stairs.json new file mode 100644 index 00000000..9d5b091f --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/light_gray_silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:light_gray_silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/light_gray_silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/light_gray_silt_shingle_wall.json new file mode 100644 index 00000000..1a1c44f8 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/light_gray_silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:light_gray_silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/light_gray_silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/light_gray_silt_shingles.json new file mode 100644 index 00000000..8a0dcae2 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/light_gray_silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:light_gray_silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/lime_packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/lime_packed_silt.json new file mode 100644 index 00000000..35d1e36c --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/lime_packed_silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:lime_packed_silt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/lime_silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/lime_silt_pot.json new file mode 100644 index 00000000..7b180704 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/lime_silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:lime_silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/lime_silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/lime_silt_shingle_slab.json new file mode 100644 index 00000000..0abfce9e --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/lime_silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:lime_silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:lime_silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/lime_silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/lime_silt_shingle_stairs.json new file mode 100644 index 00000000..331926d1 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/lime_silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:lime_silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/lime_silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/lime_silt_shingle_wall.json new file mode 100644 index 00000000..895f97e9 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/lime_silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:lime_silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/lime_silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/lime_silt_shingles.json new file mode 100644 index 00000000..b9f19439 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/lime_silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:lime_silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/magenta_packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/magenta_packed_silt.json new file mode 100644 index 00000000..dfef1b67 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/magenta_packed_silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:magenta_packed_silt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/magenta_silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/magenta_silt_pot.json new file mode 100644 index 00000000..e8ddcebf --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/magenta_silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:magenta_silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/magenta_silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/magenta_silt_shingle_slab.json new file mode 100644 index 00000000..684564ad --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/magenta_silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:magenta_silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:magenta_silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/magenta_silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/magenta_silt_shingle_stairs.json new file mode 100644 index 00000000..23269646 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/magenta_silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:magenta_silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/magenta_silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/magenta_silt_shingle_wall.json new file mode 100644 index 00000000..8a3f6624 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/magenta_silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:magenta_silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/magenta_silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/magenta_silt_shingles.json new file mode 100644 index 00000000..88c98255 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/magenta_silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:magenta_silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/mangrove_table.json b/src/main/generated/data/twigs/loot_table/blocks/mangrove_table.json new file mode 100644 index 00000000..533904d5 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/mangrove_table.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:mangrove_table" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/mixed_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/mixed_bricks.json new file mode 100644 index 00000000..4acf4e12 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/mixed_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:mixed_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/mixed_silt_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/mixed_silt_bricks.json new file mode 100644 index 00000000..00c8be1e --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/mixed_silt_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:mixed_silt_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/mossy_brick_slab.json b/src/main/generated/data/twigs/loot_table/blocks/mossy_brick_slab.json new file mode 100644 index 00000000..7901dd0b --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/mossy_brick_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:mossy_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:mossy_brick_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/mossy_brick_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/mossy_brick_stairs.json new file mode 100644 index 00000000..41f6e88a --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/mossy_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:mossy_brick_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/mossy_brick_wall.json b/src/main/generated/data/twigs/loot_table/blocks/mossy_brick_wall.json new file mode 100644 index 00000000..151ac7ac --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/mossy_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:mossy_brick_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/mossy_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/mossy_bricks.json similarity index 83% rename from src/main/resources/data/twigs/loot_tables/blocks/mossy_bricks.json rename to src/main/generated/data/twigs/loot_table/blocks/mossy_bricks.json index 31cb618f..0a99f9bb 100644 --- a/src/main/resources/data/twigs/loot_tables/blocks/mossy_bricks.json +++ b/src/main/generated/data/twigs/loot_table/blocks/mossy_bricks.json @@ -2,18 +2,19 @@ "type": "minecraft:block", "pools": [ { - "rolls": 1, + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], "entries": [ { "type": "minecraft:item", "name": "twigs:mossy_bricks" } ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] + "rolls": 1.0 } ] } \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/mossy_cobblestone_brick_slab.json b/src/main/generated/data/twigs/loot_table/blocks/mossy_cobblestone_brick_slab.json new file mode 100644 index 00000000..90b67a72 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/mossy_cobblestone_brick_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:mossy_cobblestone_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:mossy_cobblestone_brick_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/mossy_cobblestone_brick_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/mossy_cobblestone_brick_stairs.json new file mode 100644 index 00000000..a6be7791 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/mossy_cobblestone_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:mossy_cobblestone_brick_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/mossy_cobblestone_brick_wall.json b/src/main/generated/data/twigs/loot_table/blocks/mossy_cobblestone_brick_wall.json new file mode 100644 index 00000000..42788e4f --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/mossy_cobblestone_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:mossy_cobblestone_brick_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/mossy_cobblestone_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/mossy_cobblestone_bricks.json new file mode 100644 index 00000000..76ddb2f5 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/mossy_cobblestone_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:mossy_cobblestone_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/oak_table.json b/src/main/generated/data/twigs/loot_table/blocks/oak_table.json new file mode 100644 index 00000000..76dc0ab7 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/oak_table.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:oak_table" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/opaline_seashell.json b/src/main/generated/data/twigs/loot_table/blocks/opaline_seashell.json similarity index 83% rename from src/main/resources/data/twigs/loot_tables/blocks/opaline_seashell.json rename to src/main/generated/data/twigs/loot_table/blocks/opaline_seashell.json index 396f0819..8d365ecd 100644 --- a/src/main/resources/data/twigs/loot_tables/blocks/opaline_seashell.json +++ b/src/main/generated/data/twigs/loot_table/blocks/opaline_seashell.json @@ -2,18 +2,19 @@ "type": "minecraft:block", "pools": [ { - "rolls": 1, + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], "entries": [ { "type": "minecraft:item", "name": "twigs:opaline_seashell" } ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] + "rolls": 1.0 } ] -} +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/orange_packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/orange_packed_silt.json new file mode 100644 index 00000000..ed8c32bf --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/orange_packed_silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:orange_packed_silt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/orange_silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/orange_silt_pot.json new file mode 100644 index 00000000..c415edb9 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/orange_silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:orange_silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/orange_silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/orange_silt_shingle_slab.json new file mode 100644 index 00000000..ac3eef36 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/orange_silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:orange_silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:orange_silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/orange_silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/orange_silt_shingle_stairs.json new file mode 100644 index 00000000..3e3f1ae4 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/orange_silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:orange_silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/orange_silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/orange_silt_shingle_wall.json new file mode 100644 index 00000000..faa59a28 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/orange_silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:orange_silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/orange_silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/orange_silt_shingles.json new file mode 100644 index 00000000..0b3d0367 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/orange_silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:orange_silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/oxidized_copper_pillar.json b/src/main/generated/data/twigs/loot_table/blocks/oxidized_copper_pillar.json similarity index 100% rename from src/main/resources/data/twigs/loot_tables/blocks/oxidized_copper_pillar.json rename to src/main/generated/data/twigs/loot_table/blocks/oxidized_copper_pillar.json diff --git a/src/main/generated/data/twigs/loot_table/blocks/packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/packed_silt.json new file mode 100644 index 00000000..743d1cfa --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/packed_silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:packed_silt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/paper_lantern.json b/src/main/generated/data/twigs/loot_table/blocks/paper_lantern.json new file mode 100644 index 00000000..01b2fd23 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/paper_lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:paper_lantern" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/pebble.json b/src/main/generated/data/twigs/loot_table/blocks/pebble.json similarity index 100% rename from src/main/resources/data/twigs/loot_tables/blocks/pebble.json rename to src/main/generated/data/twigs/loot_table/blocks/pebble.json diff --git a/src/main/resources/data/twigs/loot_tables/blocks/petrified_lichen.json b/src/main/generated/data/twigs/loot_table/blocks/petrified_lichen.json similarity index 100% rename from src/main/resources/data/twigs/loot_tables/blocks/petrified_lichen.json rename to src/main/generated/data/twigs/loot_table/blocks/petrified_lichen.json index d71d9b91..7ee16d36 100644 --- a/src/main/resources/data/twigs/loot_tables/blocks/petrified_lichen.json +++ b/src/main/generated/data/twigs/loot_table/blocks/petrified_lichen.json @@ -91,13 +91,13 @@ "count": 1.0, "function": "minecraft:set_count" }, + { + "function": "minecraft:explosion_decay" + }, { "add": true, "count": -1.0, "function": "minecraft:set_count" - }, - { - "function": "minecraft:explosion_decay" } ], "name": "twigs:petrified_lichen" diff --git a/src/main/generated/data/twigs/loot_table/blocks/pink_packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/pink_packed_silt.json new file mode 100644 index 00000000..ad333484 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/pink_packed_silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:pink_packed_silt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/pink_silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/pink_silt_pot.json new file mode 100644 index 00000000..98611839 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/pink_silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:pink_silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/pink_silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/pink_silt_shingle_slab.json new file mode 100644 index 00000000..82bface3 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/pink_silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:pink_silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:pink_silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/pink_silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/pink_silt_shingle_stairs.json new file mode 100644 index 00000000..db5a1c3c --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/pink_silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:pink_silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/pink_silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/pink_silt_shingle_wall.json new file mode 100644 index 00000000..e5a094f7 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/pink_silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:pink_silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/pink_silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/pink_silt_shingles.json new file mode 100644 index 00000000..b13e5c80 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/pink_silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:pink_silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_amethyst.json b/src/main/generated/data/twigs/loot_table/blocks/polished_amethyst.json new file mode 100644 index 00000000..91bad3a7 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_amethyst.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_amethyst" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_basalt_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/polished_basalt_bricks.json new file mode 100644 index 00000000..f07966fe --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_basalt_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_basalt_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone.json b/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone.json new file mode 100644 index 00000000..7c6ce578 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_bloodstone" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_brick_slab.json b/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_brick_slab.json new file mode 100644 index 00000000..bb61d0d0 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_brick_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:polished_bloodstone_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:polished_bloodstone_brick_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_brick_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_brick_stairs.json new file mode 100644 index 00000000..916ba86e --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_bloodstone_brick_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_brick_wall.json b/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_brick_wall.json new file mode 100644 index 00000000..ca5c1b4e --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_bloodstone_brick_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_bricks.json new file mode 100644 index 00000000..ea48287f --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_bloodstone_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_slab.json b/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_slab.json new file mode 100644 index 00000000..c2c0cb80 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:polished_bloodstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:polished_bloodstone_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_stairs.json new file mode 100644 index 00000000..ee9918a1 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_bloodstone_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_bloodstone_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_calcite.json b/src/main/generated/data/twigs/loot_table/blocks/polished_calcite.json new file mode 100644 index 00000000..d99c8f13 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_calcite.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_calcite" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_brick_slab.json b/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_brick_slab.json new file mode 100644 index 00000000..3e23e024 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_brick_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:polished_calcite_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:polished_calcite_brick_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_brick_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_brick_stairs.json new file mode 100644 index 00000000..bdf9c3c1 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_calcite_brick_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_brick_wall.json b/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_brick_wall.json new file mode 100644 index 00000000..54b8c75a --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_calcite_brick_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_bricks.json new file mode 100644 index 00000000..66d1e32b --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_calcite_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_slab.json b/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_slab.json new file mode 100644 index 00000000..905f6678 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:polished_calcite_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:polished_calcite_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_stairs.json new file mode 100644 index 00000000..43f9155c --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_calcite_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_calcite_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite.json b/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite.json new file mode 100644 index 00000000..2a76655a --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_rhyolite" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_brick_slab.json b/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_brick_slab.json new file mode 100644 index 00000000..1747989e --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_brick_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:polished_rhyolite_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:polished_rhyolite_brick_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_brick_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_brick_stairs.json new file mode 100644 index 00000000..77f4baed --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_rhyolite_brick_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_brick_wall.json b/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_brick_wall.json new file mode 100644 index 00000000..f8cb7389 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_rhyolite_brick_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_bricks.json new file mode 100644 index 00000000..273f14c2 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_rhyolite_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_slab.json b/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_slab.json new file mode 100644 index 00000000..5a5f1963 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:polished_rhyolite_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:polished_rhyolite_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_stairs.json new file mode 100644 index 00000000..638a6dc1 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_rhyolite_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_rhyolite_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_schist.json b/src/main/generated/data/twigs/loot_table/blocks/polished_schist.json new file mode 100644 index 00000000..6ad3fc06 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_schist.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_schist" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_schist_brick_slab.json b/src/main/generated/data/twigs/loot_table/blocks/polished_schist_brick_slab.json new file mode 100644 index 00000000..0948626c --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_schist_brick_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:polished_schist_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:polished_schist_brick_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_schist_brick_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/polished_schist_brick_stairs.json new file mode 100644 index 00000000..f7f4dc7b --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_schist_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_schist_brick_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_schist_brick_wall.json b/src/main/generated/data/twigs/loot_table/blocks/polished_schist_brick_wall.json new file mode 100644 index 00000000..dbd6f07e --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_schist_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_schist_brick_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_schist_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/polished_schist_bricks.json new file mode 100644 index 00000000..211ae20e --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_schist_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_schist_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_schist_slab.json b/src/main/generated/data/twigs/loot_table/blocks/polished_schist_slab.json new file mode 100644 index 00000000..2712153f --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_schist_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:polished_schist_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:polished_schist_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_schist_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/polished_schist_stairs.json new file mode 100644 index 00000000..11a1aa0b --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_schist_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_schist_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_tuff.json b/src/main/generated/data/twigs/loot_table/blocks/polished_tuff.json new file mode 100644 index 00000000..4f545059 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_tuff.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_tuff" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_brick_slab.json b/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_brick_slab.json new file mode 100644 index 00000000..8847966b --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_brick_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:polished_tuff_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:polished_tuff_brick_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_brick_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_brick_stairs.json new file mode 100644 index 00000000..5c176b14 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_tuff_brick_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_brick_wall.json b/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_brick_wall.json new file mode 100644 index 00000000..eee7c373 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_tuff_brick_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_bricks.json new file mode 100644 index 00000000..77a8ed30 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_tuff_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_slab.json b/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_slab.json new file mode 100644 index 00000000..41ec4ed2 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:polished_tuff_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:polished_tuff_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_stairs.json new file mode 100644 index 00000000..f3a3b41f --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/polished_tuff_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:polished_tuff_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/potted_azalea_flowers.json b/src/main/generated/data/twigs/loot_table/blocks/potted_azalea_flowers.json similarity index 100% rename from src/main/resources/data/twigs/loot_tables/blocks/potted_azalea_flowers.json rename to src/main/generated/data/twigs/loot_table/blocks/potted_azalea_flowers.json diff --git a/src/main/generated/data/twigs/loot_table/blocks/purple_packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/purple_packed_silt.json new file mode 100644 index 00000000..4c494d2a --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/purple_packed_silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:purple_packed_silt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/purple_silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/purple_silt_pot.json new file mode 100644 index 00000000..05c40201 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/purple_silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:purple_silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/purple_silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/purple_silt_shingle_slab.json new file mode 100644 index 00000000..cd1b5127 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/purple_silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:purple_silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:purple_silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/purple_silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/purple_silt_shingle_stairs.json new file mode 100644 index 00000000..f12bada0 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/purple_silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:purple_silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/purple_silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/purple_silt_shingle_wall.json new file mode 100644 index 00000000..f6deb3b4 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/purple_silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:purple_silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/purple_silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/purple_silt_shingles.json new file mode 100644 index 00000000..4012a0c1 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/purple_silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:purple_silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/quartz_column.json b/src/main/generated/data/twigs/loot_table/blocks/quartz_column.json new file mode 100644 index 00000000..37333da7 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/quartz_column.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:quartz_column" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/red_packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/red_packed_silt.json new file mode 100644 index 00000000..633fd3e9 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/red_packed_silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:red_packed_silt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/red_silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/red_silt_pot.json new file mode 100644 index 00000000..4eb901ff --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/red_silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:red_silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/red_silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/red_silt_shingle_slab.json new file mode 100644 index 00000000..d41f2cc9 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/red_silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:red_silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:red_silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/red_silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/red_silt_shingle_stairs.json new file mode 100644 index 00000000..de4d94ef --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/red_silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:red_silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/red_silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/red_silt_shingle_wall.json new file mode 100644 index 00000000..eb0184a8 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/red_silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:red_silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/red_silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/red_silt_shingles.json new file mode 100644 index 00000000..c997bd80 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/red_silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:red_silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/rhyolite.json b/src/main/generated/data/twigs/loot_table/blocks/rhyolite.json new file mode 100644 index 00000000..49d910e2 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/rhyolite.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:rhyolite" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/rhyolite_slab.json b/src/main/generated/data/twigs/loot_table/blocks/rhyolite_slab.json new file mode 100644 index 00000000..67ddfacc --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/rhyolite_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:rhyolite_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:rhyolite_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/rhyolite_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/rhyolite_stairs.json new file mode 100644 index 00000000..14960d32 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/rhyolite_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:rhyolite_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/rhyolite_wall.json b/src/main/generated/data/twigs/loot_table/blocks/rhyolite_wall.json new file mode 100644 index 00000000..99e29c3a --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/rhyolite_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:rhyolite_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/rocky_dirt.json b/src/main/generated/data/twigs/loot_table/blocks/rocky_dirt.json new file mode 100644 index 00000000..5d48eb74 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/rocky_dirt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:rocky_dirt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/roseate_seashell.json b/src/main/generated/data/twigs/loot_table/blocks/roseate_seashell.json similarity index 83% rename from src/main/resources/data/twigs/loot_tables/blocks/roseate_seashell.json rename to src/main/generated/data/twigs/loot_table/blocks/roseate_seashell.json index a64c77df..6f55f213 100644 --- a/src/main/resources/data/twigs/loot_tables/blocks/roseate_seashell.json +++ b/src/main/generated/data/twigs/loot_table/blocks/roseate_seashell.json @@ -2,18 +2,19 @@ "type": "minecraft:block", "pools": [ { - "rolls": 1, + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], "entries": [ { "type": "minecraft:item", "name": "twigs:roseate_seashell" } ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] + "rolls": 1.0 } ] -} +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/schist.json b/src/main/generated/data/twigs/loot_table/blocks/schist.json new file mode 100644 index 00000000..879b8ebb --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/schist.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:schist" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/schist_slab.json b/src/main/generated/data/twigs/loot_table/blocks/schist_slab.json new file mode 100644 index 00000000..43d1129c --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/schist_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:schist_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:schist_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/schist_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/schist_stairs.json new file mode 100644 index 00000000..e6458899 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/schist_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:schist_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/schist_wall.json b/src/main/generated/data/twigs/loot_table/blocks/schist_wall.json new file mode 100644 index 00000000..e69f0c06 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/schist_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:schist_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/silt.json b/src/main/generated/data/twigs/loot_table/blocks/silt.json new file mode 100644 index 00000000..7f01d4fe --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/silt.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "twigs:silt" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:silt_ball" + } + ] + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/silt_brick_slab.json b/src/main/generated/data/twigs/loot_table/blocks/silt_brick_slab.json new file mode 100644 index 00000000..b2ee50bf --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/silt_brick_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:silt_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:silt_brick_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/silt_brick_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/silt_brick_stairs.json new file mode 100644 index 00000000..664f4015 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/silt_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:silt_brick_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/silt_brick_trail.json b/src/main/generated/data/twigs/loot_table/blocks/silt_brick_trail.json new file mode 100644 index 00000000..3e16a333 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/silt_brick_trail.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:silt_brick_trail" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/silt_brick_wall.json b/src/main/generated/data/twigs/loot_table/blocks/silt_brick_wall.json new file mode 100644 index 00000000..bdef64cc --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/silt_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:silt_brick_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/silt_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/silt_bricks.json new file mode 100644 index 00000000..2dfb920f --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/silt_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:silt_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/silt_pot.json new file mode 100644 index 00000000..41240085 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/silt_shingle_slab.json new file mode 100644 index 00000000..b8444960 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/silt_shingle_stairs.json new file mode 100644 index 00000000..6be34fc0 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/silt_shingle_wall.json new file mode 100644 index 00000000..e146bc63 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/silt_shingles.json new file mode 100644 index 00000000..e4538276 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/smooth_basalt_brick_slab.json b/src/main/generated/data/twigs/loot_table/blocks/smooth_basalt_brick_slab.json new file mode 100644 index 00000000..15d1f720 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/smooth_basalt_brick_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:smooth_basalt_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:smooth_basalt_brick_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/smooth_basalt_brick_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/smooth_basalt_brick_stairs.json new file mode 100644 index 00000000..ba98bacb --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/smooth_basalt_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:smooth_basalt_brick_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/smooth_basalt_brick_wall.json b/src/main/generated/data/twigs/loot_table/blocks/smooth_basalt_brick_wall.json new file mode 100644 index 00000000..7be040ab --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/smooth_basalt_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:smooth_basalt_brick_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/smooth_basalt_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/smooth_basalt_bricks.json new file mode 100644 index 00000000..f41894f6 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/smooth_basalt_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:smooth_basalt_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/smooth_stone_brick_slab.json b/src/main/generated/data/twigs/loot_table/blocks/smooth_stone_brick_slab.json new file mode 100644 index 00000000..ec689767 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/smooth_stone_brick_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:smooth_stone_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:smooth_stone_brick_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/smooth_stone_brick_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/smooth_stone_brick_stairs.json new file mode 100644 index 00000000..53e0be2a --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/smooth_stone_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:smooth_stone_brick_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/smooth_stone_brick_wall.json b/src/main/generated/data/twigs/loot_table/blocks/smooth_stone_brick_wall.json new file mode 100644 index 00000000..d6ae2297 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/smooth_stone_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:smooth_stone_brick_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/smooth_stone_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/smooth_stone_bricks.json new file mode 100644 index 00000000..bd789ac5 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/smooth_stone_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:smooth_stone_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/soul_lamp.json b/src/main/generated/data/twigs/loot_table/blocks/soul_lamp.json new file mode 100644 index 00000000..280ec0bd --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/soul_lamp.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:soul_lamp" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/spruce_table.json b/src/main/generated/data/twigs/loot_table/blocks/spruce_table.json new file mode 100644 index 00000000..8131fb60 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/spruce_table.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:spruce_table" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/stone_column.json b/src/main/generated/data/twigs/loot_table/blocks/stone_column.json new file mode 100644 index 00000000..9e488ebe --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/stone_column.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:stone_column" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/tangerine_seashell.json b/src/main/generated/data/twigs/loot_table/blocks/tangerine_seashell.json similarity index 83% rename from src/main/resources/data/twigs/loot_tables/blocks/tangerine_seashell.json rename to src/main/generated/data/twigs/loot_table/blocks/tangerine_seashell.json index 08d56674..be11a7d9 100644 --- a/src/main/resources/data/twigs/loot_tables/blocks/tangerine_seashell.json +++ b/src/main/generated/data/twigs/loot_table/blocks/tangerine_seashell.json @@ -2,18 +2,19 @@ "type": "minecraft:block", "pools": [ { - "rolls": 1, + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], "entries": [ { "type": "minecraft:item", "name": "twigs:tangerine_seashell" } ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] + "rolls": 1.0 } ] -} +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/torchflower_paper_lantern.json b/src/main/generated/data/twigs/loot_table/blocks/torchflower_paper_lantern.json new file mode 100644 index 00000000..0f8c1de4 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/torchflower_paper_lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:torchflower_paper_lantern" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/twig.json b/src/main/generated/data/twigs/loot_table/blocks/twig.json similarity index 100% rename from src/main/resources/data/twigs/loot_tables/blocks/twig.json rename to src/main/generated/data/twigs/loot_table/blocks/twig.json diff --git a/src/main/generated/data/twigs/loot_table/blocks/twisting_polished_blackstone_brick_slab.json b/src/main/generated/data/twigs/loot_table/blocks/twisting_polished_blackstone_brick_slab.json new file mode 100644 index 00000000..fe85b57e --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/twisting_polished_blackstone_brick_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:twisting_polished_blackstone_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:twisting_polished_blackstone_brick_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/twisting_polished_blackstone_brick_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/twisting_polished_blackstone_brick_stairs.json new file mode 100644 index 00000000..c14255bd --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/twisting_polished_blackstone_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:twisting_polished_blackstone_brick_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/twisting_polished_blackstone_brick_wall.json b/src/main/generated/data/twigs/loot_table/blocks/twisting_polished_blackstone_brick_wall.json new file mode 100644 index 00000000..5835b65d --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/twisting_polished_blackstone_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:twisting_polished_blackstone_brick_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/twisting_polished_blackstone_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/twisting_polished_blackstone_bricks.json new file mode 100644 index 00000000..fcd9d251 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/twisting_polished_blackstone_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:twisting_polished_blackstone_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/warped_shroomlamp.json b/src/main/generated/data/twigs/loot_table/blocks/warped_shroomlamp.json new file mode 100644 index 00000000..ef4d54db --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/warped_shroomlamp.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:warped_shroomlamp" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/warped_table.json b/src/main/generated/data/twigs/loot_table/blocks/warped_table.json new file mode 100644 index 00000000..4ad17cff --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/warped_table.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:warped_table" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/waxed_copper_pillar.json b/src/main/generated/data/twigs/loot_table/blocks/waxed_copper_pillar.json similarity index 100% rename from src/main/resources/data/twigs/loot_tables/blocks/waxed_copper_pillar.json rename to src/main/generated/data/twigs/loot_table/blocks/waxed_copper_pillar.json diff --git a/src/main/resources/data/twigs/loot_tables/blocks/waxed_exposed_copper_pillar.json b/src/main/generated/data/twigs/loot_table/blocks/waxed_exposed_copper_pillar.json similarity index 100% rename from src/main/resources/data/twigs/loot_tables/blocks/waxed_exposed_copper_pillar.json rename to src/main/generated/data/twigs/loot_table/blocks/waxed_exposed_copper_pillar.json diff --git a/src/main/resources/data/twigs/loot_tables/blocks/waxed_oxidized_copper_pillar.json b/src/main/generated/data/twigs/loot_table/blocks/waxed_oxidized_copper_pillar.json similarity index 100% rename from src/main/resources/data/twigs/loot_tables/blocks/waxed_oxidized_copper_pillar.json rename to src/main/generated/data/twigs/loot_table/blocks/waxed_oxidized_copper_pillar.json diff --git a/src/main/resources/data/twigs/loot_tables/blocks/waxed_weathered_copper_pillar.json b/src/main/generated/data/twigs/loot_table/blocks/waxed_weathered_copper_pillar.json similarity index 100% rename from src/main/resources/data/twigs/loot_tables/blocks/waxed_weathered_copper_pillar.json rename to src/main/generated/data/twigs/loot_table/blocks/waxed_weathered_copper_pillar.json diff --git a/src/main/resources/data/twigs/loot_tables/blocks/weathered_copper_pillar.json b/src/main/generated/data/twigs/loot_table/blocks/weathered_copper_pillar.json similarity index 100% rename from src/main/resources/data/twigs/loot_tables/blocks/weathered_copper_pillar.json rename to src/main/generated/data/twigs/loot_table/blocks/weathered_copper_pillar.json diff --git a/src/main/generated/data/twigs/loot_table/blocks/weeping_polished_blackstone_brick_slab.json b/src/main/generated/data/twigs/loot_table/blocks/weeping_polished_blackstone_brick_slab.json new file mode 100644 index 00000000..7362fc85 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/weeping_polished_blackstone_brick_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:weeping_polished_blackstone_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:weeping_polished_blackstone_brick_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/weeping_polished_blackstone_brick_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/weeping_polished_blackstone_brick_stairs.json new file mode 100644 index 00000000..2178c796 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/weeping_polished_blackstone_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:weeping_polished_blackstone_brick_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/weeping_polished_blackstone_brick_wall.json b/src/main/generated/data/twigs/loot_table/blocks/weeping_polished_blackstone_brick_wall.json new file mode 100644 index 00000000..d179b7fb --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/weeping_polished_blackstone_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:weeping_polished_blackstone_brick_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/weeping_polished_blackstone_bricks.json b/src/main/generated/data/twigs/loot_table/blocks/weeping_polished_blackstone_bricks.json new file mode 100644 index 00000000..70defdf9 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/weeping_polished_blackstone_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:weeping_polished_blackstone_bricks" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/white_packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/white_packed_silt.json new file mode 100644 index 00000000..bac57689 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/white_packed_silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:white_packed_silt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/white_silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/white_silt_pot.json new file mode 100644 index 00000000..7c040456 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/white_silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:white_silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/white_silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/white_silt_shingle_slab.json new file mode 100644 index 00000000..48dd92a6 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/white_silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:white_silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:white_silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/white_silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/white_silt_shingle_stairs.json new file mode 100644 index 00000000..2bdb8963 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/white_silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:white_silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/white_silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/white_silt_shingle_wall.json new file mode 100644 index 00000000..2de0f319 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/white_silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:white_silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/white_silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/white_silt_shingles.json new file mode 100644 index 00000000..0db5fc79 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/white_silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:white_silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/yellow_packed_silt.json b/src/main/generated/data/twigs/loot_table/blocks/yellow_packed_silt.json new file mode 100644 index 00000000..832d676f --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/yellow_packed_silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:yellow_packed_silt" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/yellow_silt_pot.json b/src/main/generated/data/twigs/loot_table/blocks/yellow_silt_pot.json new file mode 100644 index 00000000..3afc4e8e --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/yellow_silt_pot.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "twigs:yellow_silt_pot" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/yellow_silt_shingle_slab.json b/src/main/generated/data/twigs/loot_table/blocks/yellow_silt_shingle_slab.json new file mode 100644 index 00000000..596b5d61 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/yellow_silt_shingle_slab.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "twigs:yellow_silt_shingle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "twigs:yellow_silt_shingle_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/yellow_silt_shingle_stairs.json b/src/main/generated/data/twigs/loot_table/blocks/yellow_silt_shingle_stairs.json new file mode 100644 index 00000000..0059a92b --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/yellow_silt_shingle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:yellow_silt_shingle_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/yellow_silt_shingle_wall.json b/src/main/generated/data/twigs/loot_table/blocks/yellow_silt_shingle_wall.json new file mode 100644 index 00000000..3546ae81 --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/yellow_silt_shingle_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:yellow_silt_shingle_wall" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/blocks/yellow_silt_shingles.json b/src/main/generated/data/twigs/loot_table/blocks/yellow_silt_shingles.json new file mode 100644 index 00000000..8a4d258d --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/blocks/yellow_silt_shingles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "twigs:yellow_silt_shingles" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/loot_table/chests/bloodstone_obelisk.json b/src/main/generated/data/twigs/loot_table/chests/bloodstone_obelisk.json new file mode 100644 index 00000000..cb5a033e --- /dev/null +++ b/src/main/generated/data/twigs/loot_table/chests/bloodstone_obelisk.json @@ -0,0 +1,147 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crossbow" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "twigs:bloodstone" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:experience_bottle", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spectral_arrow", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 3 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + } + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/acacia_table.json b/src/main/generated/data/twigs/recipe/acacia_table.json new file mode 100644 index 00000000..b305515d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/acacia_table.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "O": { + "item": "minecraft:acacia_fence" + }, + "_": { + "item": "minecraft:acacia_slab" + } + }, + "pattern": [ + "___", + "O O", + "O O" + ], + "result": { + "count": 1, + "id": "twigs:acacia_table" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/allium_paper_lantern.json b/src/main/generated/data/twigs/recipe/allium_paper_lantern.json new file mode 100644 index 00000000..ff6b9188 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/allium_paper_lantern.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:paper_lantern" + }, + { + "item": "minecraft:allium" + } + ], + "result": { + "count": 1, + "id": "twigs:allium_paper_lantern" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/azalea_flowers_from_flowering_azalea.json b/src/main/generated/data/twigs/recipe/azalea_flowers_from_flowering_azalea.json new file mode 100644 index 00000000..7811eb70 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/azalea_flowers_from_flowering_azalea.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "minecraft:flowering_azalea" + } + ], + "result": { + "count": 6, + "id": "twigs:azalea_flowers" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/azalea_flowers_from_flowering_azalea_leaves.json b/src/main/generated/data/twigs/recipe/azalea_flowers_from_flowering_azalea_leaves.json new file mode 100644 index 00000000..9a6602a9 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/azalea_flowers_from_flowering_azalea_leaves.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "minecraft:flowering_azalea_leaves" + } + ], + "result": { + "count": 6, + "id": "twigs:azalea_flowers" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/bamboo_mat.json b/src/main/generated/data/twigs/recipe/bamboo_mat.json new file mode 100644 index 00000000..69e55d2a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/bamboo_mat.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:bamboo" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 2, + "id": "twigs:bamboo_mat" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/bamboo_table.json b/src/main/generated/data/twigs/recipe/bamboo_table.json new file mode 100644 index 00000000..51af9105 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/bamboo_table.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "O": { + "item": "minecraft:bamboo_fence" + }, + "_": { + "item": "minecraft:bamboo_slab" + } + }, + "pattern": [ + "___", + "O O", + "O O" + ], + "result": { + "count": 1, + "id": "twigs:bamboo_table" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/bamboo_thatch.json b/src/main/generated/data/twigs/recipe/bamboo_thatch.json new file mode 100644 index 00000000..fae0a46c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/bamboo_thatch.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:bamboo_leaves" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 2, + "id": "twigs:bamboo_thatch" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/bamboo_thatch_slab.json b/src/main/generated/data/twigs/recipe/bamboo_thatch_slab.json new file mode 100644 index 00000000..2eacbeea --- /dev/null +++ b/src/main/generated/data/twigs/recipe/bamboo_thatch_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:bamboo_thatch" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:bamboo_thatch_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/birch_table.json b/src/main/generated/data/twigs/recipe/birch_table.json new file mode 100644 index 00000000..c310af7a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/birch_table.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "O": { + "item": "minecraft:birch_fence" + }, + "_": { + "item": "minecraft:birch_slab" + } + }, + "pattern": [ + "___", + "O O", + "O O" + ], + "result": { + "count": 1, + "id": "twigs:birch_table" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/black_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/recipe/black_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..2a818aa3 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/black_packed_silt_from_packed_silt.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "packed_silt", + "key": { + "#": { + "item": "twigs:packed_silt" + }, + "X": { + "item": "minecraft:black_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:black_packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/black_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/black_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..991136d8 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/black_packed_silt_from_silt_shingles.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "silt_shingles", + "key": { + "#": { + "item": "twigs:silt_shingles" + }, + "X": { + "item": "minecraft:black_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:black_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/black_silt_pot.json b/src/main/generated/data/twigs/recipe/black_silt_pot.json new file mode 100644 index 00000000..2ebccbe3 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/black_silt_pot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt_pot" + }, + { + "item": "minecraft:black_dye" + } + ], + "result": { + "count": 1, + "id": "twigs:black_silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/black_silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/black_silt_shingle_slab.json new file mode 100644 index 00000000..235f2551 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/black_silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:black_silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:black_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/black_silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/black_silt_shingle_stairs.json new file mode 100644 index 00000000..37af6071 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/black_silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:black_silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:black_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/black_silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/black_silt_shingle_wall.json new file mode 100644 index 00000000..af794e7a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/black_silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:black_silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:black_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/black_silt_shingles.json b/src/main/generated/data/twigs/recipe/black_silt_shingles.json new file mode 100644 index 00000000..262afeee --- /dev/null +++ b/src/main/generated/data/twigs/recipe/black_silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:black_packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:black_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/blackstone_column.json b/src/main/generated/data/twigs/recipe/blackstone_column.json new file mode 100644 index 00000000..42db2614 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/blackstone_column.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:blackstone" + } + }, + "pattern": [ + "###", + " # " + ], + "result": { + "count": 4, + "id": "twigs:blackstone_column" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/bloodstone.json b/src/main/generated/data/twigs/recipe/bloodstone.json new file mode 100644 index 00000000..a36cfeaa --- /dev/null +++ b/src/main/generated/data/twigs/recipe/bloodstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:quartz" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "pattern": [ + "#I", + "I#" + ], + "result": { + "count": 2, + "id": "twigs:bloodstone" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/bloodstone_slab.json b/src/main/generated/data/twigs/recipe/bloodstone_slab.json new file mode 100644 index 00000000..c019317b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/bloodstone_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:bloodstone" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:bloodstone_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/bloodstone_stairs.json b/src/main/generated/data/twigs/recipe/bloodstone_stairs.json new file mode 100644 index 00000000..da56b819 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/bloodstone_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:bloodstone" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:bloodstone_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/bloodstone_wall.json b/src/main/generated/data/twigs/recipe/bloodstone_wall.json new file mode 100644 index 00000000..748e48e5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/bloodstone_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:bloodstone" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:bloodstone_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/blue_orchid_paper_lantern.json b/src/main/generated/data/twigs/recipe/blue_orchid_paper_lantern.json new file mode 100644 index 00000000..6d397c9c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/blue_orchid_paper_lantern.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:paper_lantern" + }, + { + "item": "minecraft:blue_orchid" + } + ], + "result": { + "count": 1, + "id": "twigs:blue_orchid_paper_lantern" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/blue_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/recipe/blue_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..9f57aea5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/blue_packed_silt_from_packed_silt.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "packed_silt", + "key": { + "#": { + "item": "twigs:packed_silt" + }, + "X": { + "item": "minecraft:blue_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:blue_packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/blue_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/blue_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..2b1177c5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/blue_packed_silt_from_silt_shingles.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "silt_shingles", + "key": { + "#": { + "item": "twigs:silt_shingles" + }, + "X": { + "item": "minecraft:blue_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:blue_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/blue_silt_pot.json b/src/main/generated/data/twigs/recipe/blue_silt_pot.json new file mode 100644 index 00000000..cf5cf4b1 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/blue_silt_pot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt_pot" + }, + { + "item": "minecraft:blue_dye" + } + ], + "result": { + "count": 1, + "id": "twigs:blue_silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/blue_silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/blue_silt_shingle_slab.json new file mode 100644 index 00000000..ad617b96 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/blue_silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:blue_silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:blue_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/blue_silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/blue_silt_shingle_stairs.json new file mode 100644 index 00000000..30c55663 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/blue_silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:blue_silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:blue_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/blue_silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/blue_silt_shingle_wall.json new file mode 100644 index 00000000..2028f1d6 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/blue_silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:blue_silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:blue_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/blue_silt_shingles.json b/src/main/generated/data/twigs/recipe/blue_silt_shingles.json new file mode 100644 index 00000000..b07b9fdb --- /dev/null +++ b/src/main/generated/data/twigs/recipe/blue_silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:blue_packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:blue_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/bone_meal_from_seashells.json b/src/main/generated/data/twigs/recipe/bone_meal_from_seashells.json new file mode 100644 index 00000000..340a1389 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/bone_meal_from_seashells.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "tag": "twigs:seashells" + } + }, + "pattern": [ + "#" + ], + "result": { + "count": 3, + "id": "minecraft:bone_meal" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/brick_trail.json b/src/main/generated/data/twigs/recipe/brick_trail.json new file mode 100644 index 00000000..93d3dfc9 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/brick_trail.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:bricks" + } + }, + "pattern": [ + " #", + "# " + ], + "result": { + "count": 4, + "id": "twigs:brick_trail" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/brown_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/recipe/brown_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..14963f7e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/brown_packed_silt_from_packed_silt.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "packed_silt", + "key": { + "#": { + "item": "twigs:packed_silt" + }, + "X": { + "item": "minecraft:brown_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:brown_packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/brown_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/brown_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..89bc4e1a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/brown_packed_silt_from_silt_shingles.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "silt_shingles", + "key": { + "#": { + "item": "twigs:silt_shingles" + }, + "X": { + "item": "minecraft:brown_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:brown_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/brown_silt_pot.json b/src/main/generated/data/twigs/recipe/brown_silt_pot.json new file mode 100644 index 00000000..008f074b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/brown_silt_pot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt_pot" + }, + { + "item": "minecraft:brown_dye" + } + ], + "result": { + "count": 1, + "id": "twigs:brown_silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/brown_silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/brown_silt_shingle_slab.json new file mode 100644 index 00000000..48623a83 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/brown_silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:brown_silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:brown_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/brown_silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/brown_silt_shingle_stairs.json new file mode 100644 index 00000000..80a69156 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/brown_silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:brown_silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:brown_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/brown_silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/brown_silt_shingle_wall.json new file mode 100644 index 00000000..b8a75fdf --- /dev/null +++ b/src/main/generated/data/twigs/recipe/brown_silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:brown_silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:brown_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/brown_silt_shingles.json b/src/main/generated/data/twigs/recipe/brown_silt_shingles.json new file mode 100644 index 00000000..69840770 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/brown_silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:brown_packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:brown_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/calcite_slab.json b/src/main/generated/data/twigs/recipe/calcite_slab.json new file mode 100644 index 00000000..50f2f571 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/calcite_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:calcite" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:calcite_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/calcite_stairs.json b/src/main/generated/data/twigs/recipe/calcite_stairs.json new file mode 100644 index 00000000..e907e79c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/calcite_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:calcite" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:calcite_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/calcite_wall.json b/src/main/generated/data/twigs/recipe/calcite_wall.json new file mode 100644 index 00000000..69f09249 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/calcite_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:calcite" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:calcite_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/cherry_table.json b/src/main/generated/data/twigs/recipe/cherry_table.json new file mode 100644 index 00000000..14a68e16 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/cherry_table.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "O": { + "item": "minecraft:cherry_fence" + }, + "_": { + "item": "minecraft:cherry_slab" + } + }, + "pattern": [ + "___", + "O O", + "O O" + ], + "result": { + "count": 1, + "id": "twigs:cherry_table" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/chiseled_bricks.json b/src/main/generated/data/twigs/recipe/chiseled_bricks.json new file mode 100644 index 00000000..143b74d7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/chiseled_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:brick_slab" + } + }, + "pattern": [ + "#", + "#" + ], + "result": { + "count": 1, + "id": "twigs:chiseled_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/chiseled_silt_bricks.json b/src/main/generated/data/twigs/recipe/chiseled_silt_bricks.json new file mode 100644 index 00000000..8bf77e5b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/chiseled_silt_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:silt_brick_slab" + } + }, + "pattern": [ + "#", + "#" + ], + "result": { + "count": 1, + "id": "twigs:chiseled_silt_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/chiseled_smooth_basalt_bricks.json b/src/main/generated/data/twigs/recipe/chiseled_smooth_basalt_bricks.json new file mode 100644 index 00000000..dae92160 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/chiseled_smooth_basalt_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:smooth_basalt_brick_slab" + } + }, + "pattern": [ + "#", + "#" + ], + "result": { + "count": 1, + "id": "twigs:chiseled_smooth_basalt_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/cobblestone_brick_slab.json b/src/main/generated/data/twigs/recipe/cobblestone_brick_slab.json new file mode 100644 index 00000000..c2ad6785 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/cobblestone_brick_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:cobblestone_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:cobblestone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/cobblestone_brick_stairs.json b/src/main/generated/data/twigs/recipe/cobblestone_brick_stairs.json new file mode 100644 index 00000000..2067e306 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/cobblestone_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:cobblestone_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:cobblestone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/cobblestone_brick_wall.json b/src/main/generated/data/twigs/recipe/cobblestone_brick_wall.json new file mode 100644 index 00000000..c396c7c3 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/cobblestone_brick_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:cobblestone_bricks" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:cobblestone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/cobblestone_bricks.json b/src/main/generated/data/twigs/recipe/cobblestone_bricks.json new file mode 100644 index 00000000..f7acfa1f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/cobblestone_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:cobblestone" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:cobblestone_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/cobblestone_from_pebble.json b/src/main/generated/data/twigs/recipe/cobblestone_from_pebble.json new file mode 100644 index 00000000..19589b13 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/cobblestone_from_pebble.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:pebble" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 1, + "id": "minecraft:cobblestone" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/compacted_dripstone.json b/src/main/generated/data/twigs/recipe/compacted_dripstone.json new file mode 100644 index 00000000..ab9341c9 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/compacted_dripstone.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:pointed_dripstone" + } + }, + "pattern": [ + "#", + "#" + ], + "result": { + "count": 2, + "id": "twigs:compacted_dripstone" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/copper_pillar.json b/src/main/generated/data/twigs/recipe/copper_pillar.json new file mode 100644 index 00000000..4e5dcf70 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/copper_pillar.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:cut_copper" + } + }, + "pattern": [ + "#", + "#" + ], + "result": { + "count": 1, + "id": "twigs:copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/crimson_roots_paper_lantern.json b/src/main/generated/data/twigs/recipe/crimson_roots_paper_lantern.json new file mode 100644 index 00000000..e4e4ce41 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/crimson_roots_paper_lantern.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:paper_lantern" + }, + { + "item": "minecraft:crimson_roots" + } + ], + "result": { + "count": 1, + "id": "twigs:crimson_roots_paper_lantern" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/crimson_shroomlamp.json b/src/main/generated/data/twigs/recipe/crimson_shroomlamp.json new file mode 100644 index 00000000..d55bf618 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/crimson_shroomlamp.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:crimson_planks" + }, + "S": { + "item": "minecraft:shroomlight" + } + }, + "pattern": [ + "###", + "SSS", + "###" + ], + "result": { + "count": 1, + "id": "twigs:crimson_shroomlamp" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/crimson_table.json b/src/main/generated/data/twigs/recipe/crimson_table.json new file mode 100644 index 00000000..6a69fec9 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/crimson_table.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "O": { + "item": "minecraft:crimson_fence" + }, + "_": { + "item": "minecraft:crimson_slab" + } + }, + "pattern": [ + "___", + "O O", + "O O" + ], + "result": { + "count": 1, + "id": "twigs:crimson_table" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/cut_amethyst.json b/src/main/generated/data/twigs/recipe/cut_amethyst.json new file mode 100644 index 00000000..c2988e1e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/cut_amethyst.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_amethyst" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:cut_amethyst" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/cyan_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/recipe/cyan_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..b78b148e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/cyan_packed_silt_from_packed_silt.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "packed_silt", + "key": { + "#": { + "item": "twigs:packed_silt" + }, + "X": { + "item": "minecraft:cyan_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:cyan_packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/cyan_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/cyan_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..c204175d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/cyan_packed_silt_from_silt_shingles.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "silt_shingles", + "key": { + "#": { + "item": "twigs:silt_shingles" + }, + "X": { + "item": "minecraft:cyan_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:cyan_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/cyan_silt_pot.json b/src/main/generated/data/twigs/recipe/cyan_silt_pot.json new file mode 100644 index 00000000..3a120635 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/cyan_silt_pot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt_pot" + }, + { + "item": "minecraft:cyan_dye" + } + ], + "result": { + "count": 1, + "id": "twigs:cyan_silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/cyan_silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/cyan_silt_shingle_slab.json new file mode 100644 index 00000000..daa172ec --- /dev/null +++ b/src/main/generated/data/twigs/recipe/cyan_silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:cyan_silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:cyan_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/cyan_silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/cyan_silt_shingle_stairs.json new file mode 100644 index 00000000..a48f9295 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/cyan_silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:cyan_silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:cyan_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/cyan_silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/cyan_silt_shingle_wall.json new file mode 100644 index 00000000..0c5a6112 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/cyan_silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:cyan_silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:cyan_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/cyan_silt_shingles.json b/src/main/generated/data/twigs/recipe/cyan_silt_shingles.json new file mode 100644 index 00000000..852b506d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/cyan_silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:cyan_packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:cyan_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/dandelion_paper_lantern.json b/src/main/generated/data/twigs/recipe/dandelion_paper_lantern.json new file mode 100644 index 00000000..ecbc3a76 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/dandelion_paper_lantern.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:paper_lantern" + }, + { + "item": "minecraft:dandelion" + } + ], + "result": { + "count": 1, + "id": "twigs:dandelion_paper_lantern" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/dark_oak_table.json b/src/main/generated/data/twigs/recipe/dark_oak_table.json new file mode 100644 index 00000000..2712f02f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/dark_oak_table.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "O": { + "item": "minecraft:dark_oak_fence" + }, + "_": { + "item": "minecraft:dark_oak_slab" + } + }, + "pattern": [ + "___", + "O O", + "O O" + ], + "result": { + "count": 1, + "id": "twigs:dark_oak_table" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/deepslate_column.json b/src/main/generated/data/twigs/recipe/deepslate_column.json new file mode 100644 index 00000000..4047f5c1 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/deepslate_column.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:deepslate" + } + }, + "pattern": [ + "###", + " # " + ], + "result": { + "count": 4, + "id": "twigs:deepslate_column" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/exposed_copper_pillar.json b/src/main/generated/data/twigs/recipe/exposed_copper_pillar.json new file mode 100644 index 00000000..a0d47935 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/exposed_copper_pillar.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:exposed_cut_copper" + } + }, + "pattern": [ + "#", + "#" + ], + "result": { + "count": 1, + "id": "twigs:exposed_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/gravel_brick_slab.json b/src/main/generated/data/twigs/recipe/gravel_brick_slab.json new file mode 100644 index 00000000..8a5c6f2c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/gravel_brick_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:gravel_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:gravel_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/gravel_brick_stairs.json b/src/main/generated/data/twigs/recipe/gravel_brick_stairs.json new file mode 100644 index 00000000..a00f90b9 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/gravel_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:gravel_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:gravel_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/gravel_brick_wall.json b/src/main/generated/data/twigs/recipe/gravel_brick_wall.json new file mode 100644 index 00000000..a108c168 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/gravel_brick_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:gravel_bricks" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:gravel_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/gravel_bricks.json b/src/main/generated/data/twigs/recipe/gravel_bricks.json new file mode 100644 index 00000000..b2ea36e7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/gravel_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:gravel" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:gravel_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/gray_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/recipe/gray_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..a1bd67b8 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/gray_packed_silt_from_packed_silt.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "packed_silt", + "key": { + "#": { + "item": "twigs:packed_silt" + }, + "X": { + "item": "minecraft:gray_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:gray_packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/gray_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/gray_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..af4900f9 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/gray_packed_silt_from_silt_shingles.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "silt_shingles", + "key": { + "#": { + "item": "twigs:silt_shingles" + }, + "X": { + "item": "minecraft:gray_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:gray_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/gray_silt_pot.json b/src/main/generated/data/twigs/recipe/gray_silt_pot.json new file mode 100644 index 00000000..76ea42c1 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/gray_silt_pot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt_pot" + }, + { + "item": "minecraft:gray_dye" + } + ], + "result": { + "count": 1, + "id": "twigs:gray_silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/gray_silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/gray_silt_shingle_slab.json new file mode 100644 index 00000000..202d56a1 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/gray_silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:gray_silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:gray_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/gray_silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/gray_silt_shingle_stairs.json new file mode 100644 index 00000000..1ec9c8e9 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/gray_silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:gray_silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:gray_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/gray_silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/gray_silt_shingle_wall.json new file mode 100644 index 00000000..50c89cdd --- /dev/null +++ b/src/main/generated/data/twigs/recipe/gray_silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:gray_silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:gray_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/gray_silt_shingles.json b/src/main/generated/data/twigs/recipe/gray_silt_shingles.json new file mode 100644 index 00000000..7be13e85 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/gray_silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:gray_packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:gray_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/green_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/recipe/green_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..2429efde --- /dev/null +++ b/src/main/generated/data/twigs/recipe/green_packed_silt_from_packed_silt.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "packed_silt", + "key": { + "#": { + "item": "twigs:packed_silt" + }, + "X": { + "item": "minecraft:green_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:green_packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/green_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/green_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..bf6ac847 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/green_packed_silt_from_silt_shingles.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "silt_shingles", + "key": { + "#": { + "item": "twigs:silt_shingles" + }, + "X": { + "item": "minecraft:green_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:green_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/green_silt_pot.json b/src/main/generated/data/twigs/recipe/green_silt_pot.json new file mode 100644 index 00000000..f4d4e46b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/green_silt_pot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt_pot" + }, + { + "item": "minecraft:green_dye" + } + ], + "result": { + "count": 1, + "id": "twigs:green_silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/green_silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/green_silt_shingle_slab.json new file mode 100644 index 00000000..3238c50d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/green_silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:green_silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:green_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/green_silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/green_silt_shingle_stairs.json new file mode 100644 index 00000000..0a28f728 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/green_silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:green_silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:green_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/green_silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/green_silt_shingle_wall.json new file mode 100644 index 00000000..6ed4211b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/green_silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:green_silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:green_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/green_silt_shingles.json b/src/main/generated/data/twigs/recipe/green_silt_shingles.json new file mode 100644 index 00000000..f5663faa --- /dev/null +++ b/src/main/generated/data/twigs/recipe/green_silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:green_packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:green_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/jungle_table.json b/src/main/generated/data/twigs/recipe/jungle_table.json new file mode 100644 index 00000000..fcf16168 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/jungle_table.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "O": { + "item": "minecraft:jungle_fence" + }, + "_": { + "item": "minecraft:jungle_slab" + } + }, + "pattern": [ + "___", + "O O", + "O O" + ], + "result": { + "count": 1, + "id": "twigs:jungle_table" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/lamp.json b/src/main/generated/data/twigs/recipe/lamp.json new file mode 100644 index 00000000..13cbbb92 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/lamp.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "C": { + "item": "minecraft:coal" + }, + "T": { + "item": "minecraft:torch" + }, + "i": { + "item": "minecraft:iron_ingot" + } + }, + "pattern": [ + "iii", + "iTi", + "iCi" + ], + "result": { + "count": 1, + "id": "twigs:lamp" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/light_blue_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/recipe/light_blue_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..889c377d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/light_blue_packed_silt_from_packed_silt.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "packed_silt", + "key": { + "#": { + "item": "twigs:packed_silt" + }, + "X": { + "item": "minecraft:light_blue_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:light_blue_packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/light_blue_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/light_blue_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..cc6bf2c8 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/light_blue_packed_silt_from_silt_shingles.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "silt_shingles", + "key": { + "#": { + "item": "twigs:silt_shingles" + }, + "X": { + "item": "minecraft:light_blue_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:light_blue_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/light_blue_silt_pot.json b/src/main/generated/data/twigs/recipe/light_blue_silt_pot.json new file mode 100644 index 00000000..d265b4f5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/light_blue_silt_pot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt_pot" + }, + { + "item": "minecraft:light_blue_dye" + } + ], + "result": { + "count": 1, + "id": "twigs:light_blue_silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/light_blue_silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/light_blue_silt_shingle_slab.json new file mode 100644 index 00000000..5c21513c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/light_blue_silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:light_blue_silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:light_blue_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/light_blue_silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/light_blue_silt_shingle_stairs.json new file mode 100644 index 00000000..5fe0cb3e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/light_blue_silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:light_blue_silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:light_blue_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/light_blue_silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/light_blue_silt_shingle_wall.json new file mode 100644 index 00000000..1ed70d92 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/light_blue_silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:light_blue_silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:light_blue_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/light_blue_silt_shingles.json b/src/main/generated/data/twigs/recipe/light_blue_silt_shingles.json new file mode 100644 index 00000000..5f2899ff --- /dev/null +++ b/src/main/generated/data/twigs/recipe/light_blue_silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:light_blue_packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:light_blue_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/light_gray_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/recipe/light_gray_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..56ca5521 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/light_gray_packed_silt_from_packed_silt.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "packed_silt", + "key": { + "#": { + "item": "twigs:packed_silt" + }, + "X": { + "item": "minecraft:light_gray_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:light_gray_packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/light_gray_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/light_gray_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..278b3f96 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/light_gray_packed_silt_from_silt_shingles.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "silt_shingles", + "key": { + "#": { + "item": "twigs:silt_shingles" + }, + "X": { + "item": "minecraft:light_gray_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:light_gray_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/light_gray_silt_pot.json b/src/main/generated/data/twigs/recipe/light_gray_silt_pot.json new file mode 100644 index 00000000..46dd433b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/light_gray_silt_pot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt_pot" + }, + { + "item": "minecraft:light_gray_dye" + } + ], + "result": { + "count": 1, + "id": "twigs:light_gray_silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/light_gray_silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/light_gray_silt_shingle_slab.json new file mode 100644 index 00000000..805de10a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/light_gray_silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:light_gray_silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:light_gray_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/light_gray_silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/light_gray_silt_shingle_stairs.json new file mode 100644 index 00000000..c23539e6 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/light_gray_silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:light_gray_silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:light_gray_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/light_gray_silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/light_gray_silt_shingle_wall.json new file mode 100644 index 00000000..bc706d7c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/light_gray_silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:light_gray_silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:light_gray_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/light_gray_silt_shingles.json b/src/main/generated/data/twigs/recipe/light_gray_silt_shingles.json new file mode 100644 index 00000000..fa2c7f0f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/light_gray_silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:light_gray_packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:light_gray_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/lime_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/recipe/lime_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..8abbae22 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/lime_packed_silt_from_packed_silt.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "packed_silt", + "key": { + "#": { + "item": "twigs:packed_silt" + }, + "X": { + "item": "minecraft:lime_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:lime_packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/lime_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/lime_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..d3fd1a30 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/lime_packed_silt_from_silt_shingles.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "silt_shingles", + "key": { + "#": { + "item": "twigs:silt_shingles" + }, + "X": { + "item": "minecraft:lime_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:lime_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/lime_silt_pot.json b/src/main/generated/data/twigs/recipe/lime_silt_pot.json new file mode 100644 index 00000000..906d1b75 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/lime_silt_pot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt_pot" + }, + { + "item": "minecraft:lime_dye" + } + ], + "result": { + "count": 1, + "id": "twigs:lime_silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/lime_silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/lime_silt_shingle_slab.json new file mode 100644 index 00000000..b2068f9c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/lime_silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:lime_silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:lime_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/lime_silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/lime_silt_shingle_stairs.json new file mode 100644 index 00000000..d220c62c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/lime_silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:lime_silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:lime_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/lime_silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/lime_silt_shingle_wall.json new file mode 100644 index 00000000..dc3b5fe2 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/lime_silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:lime_silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:lime_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/lime_silt_shingles.json b/src/main/generated/data/twigs/recipe/lime_silt_shingles.json new file mode 100644 index 00000000..9ec5dabb --- /dev/null +++ b/src/main/generated/data/twigs/recipe/lime_silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:lime_packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:lime_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/magenta_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/recipe/magenta_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..585cd77f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/magenta_packed_silt_from_packed_silt.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "packed_silt", + "key": { + "#": { + "item": "twigs:packed_silt" + }, + "X": { + "item": "minecraft:magenta_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:magenta_packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/magenta_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/magenta_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..1ed8bf87 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/magenta_packed_silt_from_silt_shingles.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "silt_shingles", + "key": { + "#": { + "item": "twigs:silt_shingles" + }, + "X": { + "item": "minecraft:magenta_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:magenta_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/magenta_silt_pot.json b/src/main/generated/data/twigs/recipe/magenta_silt_pot.json new file mode 100644 index 00000000..99a7dd0a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/magenta_silt_pot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt_pot" + }, + { + "item": "minecraft:magenta_dye" + } + ], + "result": { + "count": 1, + "id": "twigs:magenta_silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/magenta_silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/magenta_silt_shingle_slab.json new file mode 100644 index 00000000..84bc226b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/magenta_silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:magenta_silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:magenta_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/magenta_silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/magenta_silt_shingle_stairs.json new file mode 100644 index 00000000..e5d9a585 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/magenta_silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:magenta_silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:magenta_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/magenta_silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/magenta_silt_shingle_wall.json new file mode 100644 index 00000000..8eba0455 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/magenta_silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:magenta_silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:magenta_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/magenta_silt_shingles.json b/src/main/generated/data/twigs/recipe/magenta_silt_shingles.json new file mode 100644 index 00000000..36082dec --- /dev/null +++ b/src/main/generated/data/twigs/recipe/magenta_silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:magenta_packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:magenta_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/mangrove_table.json b/src/main/generated/data/twigs/recipe/mangrove_table.json new file mode 100644 index 00000000..6ba4766f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/mangrove_table.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "O": { + "item": "minecraft:mangrove_fence" + }, + "_": { + "item": "minecraft:mangrove_slab" + } + }, + "pattern": [ + "___", + "O O", + "O O" + ], + "result": { + "count": 1, + "id": "twigs:mangrove_table" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/mixed_bricks.json b/src/main/generated/data/twigs/recipe/mixed_bricks.json new file mode 100644 index 00000000..d5a36bbe --- /dev/null +++ b/src/main/generated/data/twigs/recipe/mixed_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:bricks" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:mixed_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/mixed_silt_bricks.json b/src/main/generated/data/twigs/recipe/mixed_silt_bricks.json new file mode 100644 index 00000000..e39ee5b1 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/mixed_silt_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:silt_bricks" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:mixed_silt_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/mossy_brick_slab.json b/src/main/generated/data/twigs/recipe/mossy_brick_slab.json new file mode 100644 index 00000000..e38a1005 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/mossy_brick_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:mossy_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:mossy_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/mossy_brick_stairs.json b/src/main/generated/data/twigs/recipe/mossy_brick_stairs.json new file mode 100644 index 00000000..d93d0014 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/mossy_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:mossy_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:mossy_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/mossy_brick_wall.json b/src/main/generated/data/twigs/recipe/mossy_brick_wall.json new file mode 100644 index 00000000..40d5f1b1 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/mossy_brick_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:mossy_bricks" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:mossy_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/mossy_bricks_from_bricks.json b/src/main/generated/data/twigs/recipe/mossy_bricks_from_bricks.json new file mode 100644 index 00000000..8d11fd19 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/mossy_bricks_from_bricks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "minecraft:bricks" + }, + { + "item": "minecraft:moss_block" + } + ], + "result": { + "count": 1, + "id": "twigs:mossy_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/mossy_bricks_from_vines.json b/src/main/generated/data/twigs/recipe/mossy_bricks_from_vines.json new file mode 100644 index 00000000..cd239142 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/mossy_bricks_from_vines.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "minecraft:bricks" + }, + { + "item": "minecraft:vine" + } + ], + "result": { + "count": 1, + "id": "twigs:mossy_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/mossy_cobblestone_brick_slab.json b/src/main/generated/data/twigs/recipe/mossy_cobblestone_brick_slab.json new file mode 100644 index 00000000..060abd40 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/mossy_cobblestone_brick_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:mossy_cobblestone_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:mossy_cobblestone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/mossy_cobblestone_brick_stairs.json b/src/main/generated/data/twigs/recipe/mossy_cobblestone_brick_stairs.json new file mode 100644 index 00000000..9bbc3c3f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/mossy_cobblestone_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:mossy_cobblestone_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:mossy_cobblestone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/mossy_cobblestone_brick_wall.json b/src/main/generated/data/twigs/recipe/mossy_cobblestone_brick_wall.json new file mode 100644 index 00000000..c25e3a66 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/mossy_cobblestone_brick_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:mossy_cobblestone_bricks" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:mossy_cobblestone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/mossy_cobblestone_bricks.json b/src/main/generated/data/twigs/recipe/mossy_cobblestone_bricks.json new file mode 100644 index 00000000..be1a7440 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/mossy_cobblestone_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:mossy_cobblestone" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:mossy_cobblestone_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/mossy_cobblestone_bricks_from_moss.json b/src/main/generated/data/twigs/recipe/mossy_cobblestone_bricks_from_moss.json new file mode 100644 index 00000000..24bb4149 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/mossy_cobblestone_bricks_from_moss.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:cobblestone_bricks" + }, + { + "item": "minecraft:moss_block" + } + ], + "result": { + "count": 1, + "id": "twigs:mossy_cobblestone_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/oak_table.json b/src/main/generated/data/twigs/recipe/oak_table.json new file mode 100644 index 00000000..fdf18fc9 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/oak_table.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "O": { + "item": "minecraft:oak_fence" + }, + "_": { + "item": "minecraft:oak_slab" + } + }, + "pattern": [ + "___", + "O O", + "O O" + ], + "result": { + "count": 1, + "id": "twigs:oak_table" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/orange_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/recipe/orange_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..0a1d5f84 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/orange_packed_silt_from_packed_silt.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "packed_silt", + "key": { + "#": { + "item": "twigs:packed_silt" + }, + "X": { + "item": "minecraft:orange_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:orange_packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/orange_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/orange_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..c872f317 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/orange_packed_silt_from_silt_shingles.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "silt_shingles", + "key": { + "#": { + "item": "twigs:silt_shingles" + }, + "X": { + "item": "minecraft:orange_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:orange_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/orange_silt_pot.json b/src/main/generated/data/twigs/recipe/orange_silt_pot.json new file mode 100644 index 00000000..9de025bd --- /dev/null +++ b/src/main/generated/data/twigs/recipe/orange_silt_pot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt_pot" + }, + { + "item": "minecraft:orange_dye" + } + ], + "result": { + "count": 1, + "id": "twigs:orange_silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/orange_silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/orange_silt_shingle_slab.json new file mode 100644 index 00000000..d6032132 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/orange_silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:orange_silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:orange_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/orange_silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/orange_silt_shingle_stairs.json new file mode 100644 index 00000000..e2384d4f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/orange_silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:orange_silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:orange_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/orange_silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/orange_silt_shingle_wall.json new file mode 100644 index 00000000..8343f8ff --- /dev/null +++ b/src/main/generated/data/twigs/recipe/orange_silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:orange_silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:orange_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/orange_silt_shingles.json b/src/main/generated/data/twigs/recipe/orange_silt_shingles.json new file mode 100644 index 00000000..187a7914 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/orange_silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:orange_packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:orange_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/oxidized_copper_pillar.json b/src/main/generated/data/twigs/recipe/oxidized_copper_pillar.json new file mode 100644 index 00000000..aa7a8277 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/oxidized_copper_pillar.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:oxidized_cut_copper" + } + }, + "pattern": [ + "#", + "#" + ], + "result": { + "count": 1, + "id": "twigs:oxidized_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/packed_silt.json b/src/main/generated/data/twigs/recipe/packed_silt.json new file mode 100644 index 00000000..df9fddd3 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/packed_silt.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt" + }, + { + "item": "minecraft:wheat" + } + ], + "result": { + "count": 4, + "id": "twigs:packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/paper_lantern.json b/src/main/generated/data/twigs/recipe/paper_lantern.json new file mode 100644 index 00000000..fe98e1e0 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/paper_lantern.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:paper" + }, + "T": { + "item": "minecraft:torch" + } + }, + "pattern": [ + "###", + "#T#", + "###" + ], + "result": { + "count": 1, + "id": "twigs:paper_lantern" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/pink_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/recipe/pink_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..c289fc80 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/pink_packed_silt_from_packed_silt.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "packed_silt", + "key": { + "#": { + "item": "twigs:packed_silt" + }, + "X": { + "item": "minecraft:pink_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:pink_packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/pink_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/pink_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..0e97a341 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/pink_packed_silt_from_silt_shingles.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "silt_shingles", + "key": { + "#": { + "item": "twigs:silt_shingles" + }, + "X": { + "item": "minecraft:pink_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:pink_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/pink_silt_pot.json b/src/main/generated/data/twigs/recipe/pink_silt_pot.json new file mode 100644 index 00000000..41c88c23 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/pink_silt_pot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt_pot" + }, + { + "item": "minecraft:pink_dye" + } + ], + "result": { + "count": 1, + "id": "twigs:pink_silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/pink_silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/pink_silt_shingle_slab.json new file mode 100644 index 00000000..8a681d01 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/pink_silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:pink_silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:pink_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/pink_silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/pink_silt_shingle_stairs.json new file mode 100644 index 00000000..68365346 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/pink_silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:pink_silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:pink_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/pink_silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/pink_silt_shingle_wall.json new file mode 100644 index 00000000..8e068b1e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/pink_silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:pink_silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:pink_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/pink_silt_shingles.json b/src/main/generated/data/twigs/recipe/pink_silt_shingles.json new file mode 100644 index 00000000..34243145 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/pink_silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:pink_packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:pink_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_amethyst.json b/src/main/generated/data/twigs/recipe/polished_amethyst.json new file mode 100644 index 00000000..f008b723 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_amethyst.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:amethyst_block" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:polished_amethyst" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_basalt_bricks.json b/src/main/generated/data/twigs/recipe/polished_basalt_bricks.json new file mode 100644 index 00000000..64800752 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_basalt_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:polished_basalt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:polished_basalt_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_bloodstone.json b/src/main/generated/data/twigs/recipe/polished_bloodstone.json new file mode 100644 index 00000000..240ba276 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_bloodstone.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:bloodstone" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:polished_bloodstone" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_bloodstone_brick_slab.json b/src/main/generated/data/twigs/recipe/polished_bloodstone_brick_slab.json new file mode 100644 index 00000000..681d0ac4 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_bloodstone_brick_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_bloodstone_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:polished_bloodstone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_bloodstone_brick_stairs.json b/src/main/generated/data/twigs/recipe/polished_bloodstone_brick_stairs.json new file mode 100644 index 00000000..f9ae912c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_bloodstone_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_bloodstone_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:polished_bloodstone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_bloodstone_brick_wall.json b/src/main/generated/data/twigs/recipe/polished_bloodstone_brick_wall.json new file mode 100644 index 00000000..2da9dc02 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_bloodstone_brick_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_bloodstone_bricks" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:polished_bloodstone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_bloodstone_bricks.json b/src/main/generated/data/twigs/recipe/polished_bloodstone_bricks.json new file mode 100644 index 00000000..4dcec9d7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_bloodstone_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_bloodstone" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:polished_bloodstone_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_bloodstone_slab.json b/src/main/generated/data/twigs/recipe/polished_bloodstone_slab.json new file mode 100644 index 00000000..d2aece67 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_bloodstone_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_bloodstone" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:polished_bloodstone_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_bloodstone_stairs.json b/src/main/generated/data/twigs/recipe/polished_bloodstone_stairs.json new file mode 100644 index 00000000..36c7e858 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_bloodstone_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_bloodstone" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:polished_bloodstone_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_calcite.json b/src/main/generated/data/twigs/recipe/polished_calcite.json new file mode 100644 index 00000000..19d61876 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_calcite.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:calcite" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:polished_calcite" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_calcite_brick_slab.json b/src/main/generated/data/twigs/recipe/polished_calcite_brick_slab.json new file mode 100644 index 00000000..b45cc810 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_calcite_brick_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_calcite_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:polished_calcite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_calcite_brick_stairs.json b/src/main/generated/data/twigs/recipe/polished_calcite_brick_stairs.json new file mode 100644 index 00000000..94e812e3 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_calcite_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_calcite_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:polished_calcite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_calcite_brick_wall.json b/src/main/generated/data/twigs/recipe/polished_calcite_brick_wall.json new file mode 100644 index 00000000..c312377e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_calcite_brick_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_calcite_bricks" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:polished_calcite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_calcite_bricks.json b/src/main/generated/data/twigs/recipe/polished_calcite_bricks.json new file mode 100644 index 00000000..0d7ee71a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_calcite_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_calcite" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:polished_calcite_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_calcite_slab.json b/src/main/generated/data/twigs/recipe/polished_calcite_slab.json new file mode 100644 index 00000000..1dd5152a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_calcite_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_calcite" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:polished_calcite_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_calcite_stairs.json b/src/main/generated/data/twigs/recipe/polished_calcite_stairs.json new file mode 100644 index 00000000..bbffe652 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_calcite_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_calcite" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:polished_calcite_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_rhyolite.json b/src/main/generated/data/twigs/recipe/polished_rhyolite.json new file mode 100644 index 00000000..a31dd2a6 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_rhyolite.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:rhyolite" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:polished_rhyolite" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_rhyolite_brick_slab.json b/src/main/generated/data/twigs/recipe/polished_rhyolite_brick_slab.json new file mode 100644 index 00000000..e2a4215b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_rhyolite_brick_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_rhyolite_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:polished_rhyolite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_rhyolite_brick_stairs.json b/src/main/generated/data/twigs/recipe/polished_rhyolite_brick_stairs.json new file mode 100644 index 00000000..4ef34920 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_rhyolite_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_rhyolite_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:polished_rhyolite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_rhyolite_brick_wall.json b/src/main/generated/data/twigs/recipe/polished_rhyolite_brick_wall.json new file mode 100644 index 00000000..c9eb329d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_rhyolite_brick_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_rhyolite_bricks" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:polished_rhyolite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_rhyolite_bricks.json b/src/main/generated/data/twigs/recipe/polished_rhyolite_bricks.json new file mode 100644 index 00000000..6a45a687 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_rhyolite_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_rhyolite" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:polished_rhyolite_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_rhyolite_slab.json b/src/main/generated/data/twigs/recipe/polished_rhyolite_slab.json new file mode 100644 index 00000000..6036121c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_rhyolite_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_rhyolite" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:polished_rhyolite_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_rhyolite_stairs.json b/src/main/generated/data/twigs/recipe/polished_rhyolite_stairs.json new file mode 100644 index 00000000..207e7583 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_rhyolite_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_rhyolite" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:polished_rhyolite_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_schist.json b/src/main/generated/data/twigs/recipe/polished_schist.json new file mode 100644 index 00000000..c05fae92 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_schist.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:schist" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:polished_schist" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_schist_brick_slab.json b/src/main/generated/data/twigs/recipe/polished_schist_brick_slab.json new file mode 100644 index 00000000..162958e5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_schist_brick_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_schist_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:polished_schist_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_schist_brick_stairs.json b/src/main/generated/data/twigs/recipe/polished_schist_brick_stairs.json new file mode 100644 index 00000000..cb9583c2 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_schist_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_schist_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:polished_schist_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_schist_brick_wall.json b/src/main/generated/data/twigs/recipe/polished_schist_brick_wall.json new file mode 100644 index 00000000..0304ac12 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_schist_brick_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_schist_bricks" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:polished_schist_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_schist_bricks.json b/src/main/generated/data/twigs/recipe/polished_schist_bricks.json new file mode 100644 index 00000000..5baa43b0 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_schist_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_schist" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:polished_schist_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_schist_slab.json b/src/main/generated/data/twigs/recipe/polished_schist_slab.json new file mode 100644 index 00000000..1c4f33d5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_schist_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_schist" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:polished_schist_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_schist_stairs.json b/src/main/generated/data/twigs/recipe/polished_schist_stairs.json new file mode 100644 index 00000000..391a3846 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_schist_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_schist" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:polished_schist_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_tuff.json b/src/main/generated/data/twigs/recipe/polished_tuff.json new file mode 100644 index 00000000..2d834aa7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_tuff.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:tuff" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:polished_tuff" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_tuff_brick_slab.json b/src/main/generated/data/twigs/recipe/polished_tuff_brick_slab.json new file mode 100644 index 00000000..aaae727d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_tuff_brick_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_tuff_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:polished_tuff_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_tuff_brick_stairs.json b/src/main/generated/data/twigs/recipe/polished_tuff_brick_stairs.json new file mode 100644 index 00000000..915d7b14 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_tuff_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_tuff_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:polished_tuff_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_tuff_brick_wall.json b/src/main/generated/data/twigs/recipe/polished_tuff_brick_wall.json new file mode 100644 index 00000000..d4330f50 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_tuff_brick_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_tuff_bricks" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:polished_tuff_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_tuff_bricks.json b/src/main/generated/data/twigs/recipe/polished_tuff_bricks.json new file mode 100644 index 00000000..3ee0f86f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_tuff_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_tuff" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:polished_tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_tuff_slab.json b/src/main/generated/data/twigs/recipe/polished_tuff_slab.json new file mode 100644 index 00000000..66707bbe --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_tuff_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_tuff" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:polished_tuff_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/polished_tuff_stairs.json b/src/main/generated/data/twigs/recipe/polished_tuff_stairs.json new file mode 100644 index 00000000..d5c42071 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/polished_tuff_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:polished_tuff" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:polished_tuff_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/purple_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/recipe/purple_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..38c11712 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/purple_packed_silt_from_packed_silt.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "packed_silt", + "key": { + "#": { + "item": "twigs:packed_silt" + }, + "X": { + "item": "minecraft:purple_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:purple_packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/purple_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/purple_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..9e7fd227 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/purple_packed_silt_from_silt_shingles.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "silt_shingles", + "key": { + "#": { + "item": "twigs:silt_shingles" + }, + "X": { + "item": "minecraft:purple_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:purple_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/purple_silt_pot.json b/src/main/generated/data/twigs/recipe/purple_silt_pot.json new file mode 100644 index 00000000..61e33d23 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/purple_silt_pot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt_pot" + }, + { + "item": "minecraft:purple_dye" + } + ], + "result": { + "count": 1, + "id": "twigs:purple_silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/purple_silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/purple_silt_shingle_slab.json new file mode 100644 index 00000000..1b1d64a0 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/purple_silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:purple_silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:purple_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/purple_silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/purple_silt_shingle_stairs.json new file mode 100644 index 00000000..d722e820 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/purple_silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:purple_silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:purple_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/purple_silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/purple_silt_shingle_wall.json new file mode 100644 index 00000000..303d3547 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/purple_silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:purple_silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:purple_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/purple_silt_shingles.json b/src/main/generated/data/twigs/recipe/purple_silt_shingles.json new file mode 100644 index 00000000..c3ad4e06 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/purple_silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:purple_packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:purple_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/quartz_column.json b/src/main/generated/data/twigs/recipe/quartz_column.json new file mode 100644 index 00000000..b089d043 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/quartz_column.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:quartz_block" + } + }, + "pattern": [ + "###", + " # " + ], + "result": { + "count": 4, + "id": "twigs:quartz_column" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/red_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/recipe/red_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..d292b8d1 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/red_packed_silt_from_packed_silt.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "packed_silt", + "key": { + "#": { + "item": "twigs:packed_silt" + }, + "X": { + "item": "minecraft:red_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:red_packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/red_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/red_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..7ac8083f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/red_packed_silt_from_silt_shingles.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "silt_shingles", + "key": { + "#": { + "item": "twigs:silt_shingles" + }, + "X": { + "item": "minecraft:red_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:red_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/red_silt_pot.json b/src/main/generated/data/twigs/recipe/red_silt_pot.json new file mode 100644 index 00000000..cd029606 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/red_silt_pot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt_pot" + }, + { + "item": "minecraft:red_dye" + } + ], + "result": { + "count": 1, + "id": "twigs:red_silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/red_silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/red_silt_shingle_slab.json new file mode 100644 index 00000000..488b2907 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/red_silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:red_silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:red_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/red_silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/red_silt_shingle_stairs.json new file mode 100644 index 00000000..3d8b3c14 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/red_silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:red_silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:red_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/red_silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/red_silt_shingle_wall.json new file mode 100644 index 00000000..064337e5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/red_silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:red_silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:red_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/red_silt_shingles.json b/src/main/generated/data/twigs/recipe/red_silt_shingles.json new file mode 100644 index 00000000..5f2a6eb7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/red_silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:red_packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:red_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/rhyolite.json b/src/main/generated/data/twigs/recipe/rhyolite.json new file mode 100644 index 00000000..cb0d3e33 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/rhyolite.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:quartz" + }, + "R": { + "item": "minecraft:red_sand" + } + }, + "pattern": [ + "#R", + "R#" + ], + "result": { + "count": 2, + "id": "twigs:rhyolite" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/rhyolite_slab.json b/src/main/generated/data/twigs/recipe/rhyolite_slab.json new file mode 100644 index 00000000..7bc34674 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/rhyolite_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:rhyolite" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:rhyolite_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/rhyolite_stairs.json b/src/main/generated/data/twigs/recipe/rhyolite_stairs.json new file mode 100644 index 00000000..58b7d5e0 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/rhyolite_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:rhyolite" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:rhyolite_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/rhyolite_wall.json b/src/main/generated/data/twigs/recipe/rhyolite_wall.json new file mode 100644 index 00000000..12d5941b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/rhyolite_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:rhyolite" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:rhyolite_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/rocky_dirt.json b/src/main/generated/data/twigs/recipe/rocky_dirt.json new file mode 100644 index 00000000..fa4ff5e7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/rocky_dirt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:dirt" + }, + "C": { + "item": "twigs:pebble" + } + }, + "pattern": [ + "#C", + "C#" + ], + "result": { + "count": 4, + "id": "twigs:rocky_dirt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/schist.json b/src/main/generated/data/twigs/recipe/schist.json new file mode 100644 index 00000000..c38fa64e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/schist.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:quartz" + }, + "C": { + "item": "minecraft:clay_ball" + } + }, + "pattern": [ + "#C", + "C#" + ], + "result": { + "count": 2, + "id": "twigs:schist" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/schist_slab.json b/src/main/generated/data/twigs/recipe/schist_slab.json new file mode 100644 index 00000000..49446e23 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/schist_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:schist" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:schist_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/schist_stairs.json b/src/main/generated/data/twigs/recipe/schist_stairs.json new file mode 100644 index 00000000..7ce9c84a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/schist_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:schist" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:schist_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/schist_wall.json b/src/main/generated/data/twigs/recipe/schist_wall.json new file mode 100644 index 00000000..c97c58a7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/schist_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:schist" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:schist_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/silt.json b/src/main/generated/data/twigs/recipe/silt.json new file mode 100644 index 00000000..fde8d99f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/silt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "D": { + "item": "minecraft:sand" + }, + "G": { + "item": "minecraft:clay" + } + }, + "pattern": [ + "DG", + "GD" + ], + "result": { + "count": 4, + "id": "twigs:silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/silt_brick_slab.json b/src/main/generated/data/twigs/recipe/silt_brick_slab.json new file mode 100644 index 00000000..14989c58 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/silt_brick_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:silt_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:silt_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/silt_brick_stairs.json b/src/main/generated/data/twigs/recipe/silt_brick_stairs.json new file mode 100644 index 00000000..3cdef436 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/silt_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:silt_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:silt_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/silt_brick_trail.json b/src/main/generated/data/twigs/recipe/silt_brick_trail.json new file mode 100644 index 00000000..e472be3a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/silt_brick_trail.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:silt_bricks" + } + }, + "pattern": [ + " #", + "# " + ], + "result": { + "count": 4, + "id": "twigs:silt_brick_trail" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/silt_brick_wall.json b/src/main/generated/data/twigs/recipe/silt_brick_wall.json new file mode 100644 index 00000000..4a032f1d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/silt_brick_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:silt_bricks" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:silt_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/silt_bricks.json b/src/main/generated/data/twigs/recipe/silt_bricks.json new file mode 100644 index 00000000..b04228d6 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/silt_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:silt_brick" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 1, + "id": "twigs:silt_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/silt_from_silt_ball.json b/src/main/generated/data/twigs/recipe/silt_from_silt_ball.json new file mode 100644 index 00000000..49a3d209 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/silt_from_silt_ball.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:silt_ball" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 1, + "id": "twigs:silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/silt_pot.json b/src/main/generated/data/twigs/recipe/silt_pot.json new file mode 100644 index 00000000..a0639c4f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/silt_pot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:silt_bricks" + } + }, + "pattern": [ + "# #", + "# #", + "###" + ], + "result": { + "count": 1, + "id": "twigs:silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/silt_shingle_slab.json new file mode 100644 index 00000000..cf86eb69 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/silt_shingle_stairs.json new file mode 100644 index 00000000..0e8c27ea --- /dev/null +++ b/src/main/generated/data/twigs/recipe/silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/silt_shingle_wall.json new file mode 100644 index 00000000..bd44ba2b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/silt_shingles.json b/src/main/generated/data/twigs/recipe/silt_shingles.json new file mode 100644 index 00000000..3724a4fb --- /dev/null +++ b/src/main/generated/data/twigs/recipe/silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smelting/cracked_bricks_from_bricks_smelting.json b/src/main/generated/data/twigs/recipe/smelting/cracked_bricks_from_bricks_smelting.json new file mode 100644 index 00000000..8aace67a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smelting/cracked_bricks_from_bricks_smelting.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": { + "item": "minecraft:bricks" + }, + "result": { + "id": "twigs:cracked_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smelting/cracked_cobblestone_bricks_from_cobblestone_bricks_smelting.json b/src/main/generated/data/twigs/recipe/smelting/cracked_cobblestone_bricks_from_cobblestone_bricks_smelting.json new file mode 100644 index 00000000..264a7bcd --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smelting/cracked_cobblestone_bricks_from_cobblestone_bricks_smelting.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": { + "item": "twigs:cobblestone_bricks" + }, + "result": { + "id": "twigs:cracked_cobblestone_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smelting/cracked_polished_bloodstone_bricks_from_polished_bloodstone_bricks_smelting.json b/src/main/generated/data/twigs/recipe/smelting/cracked_polished_bloodstone_bricks_from_polished_bloodstone_bricks_smelting.json new file mode 100644 index 00000000..1604b5a7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smelting/cracked_polished_bloodstone_bricks_from_polished_bloodstone_bricks_smelting.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": { + "item": "twigs:polished_bloodstone_bricks" + }, + "result": { + "id": "twigs:cracked_polished_bloodstone_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smelting/cracked_polished_calcite_bricks_from_polished_calcite_bricks_smelting.json b/src/main/generated/data/twigs/recipe/smelting/cracked_polished_calcite_bricks_from_polished_calcite_bricks_smelting.json new file mode 100644 index 00000000..928e8eab --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smelting/cracked_polished_calcite_bricks_from_polished_calcite_bricks_smelting.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": { + "item": "twigs:polished_calcite_bricks" + }, + "result": { + "id": "twigs:cracked_polished_calcite_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smelting/cracked_polished_rhyolite_bricks_from_polished_rhyolite_bricks_smelting.json b/src/main/generated/data/twigs/recipe/smelting/cracked_polished_rhyolite_bricks_from_polished_rhyolite_bricks_smelting.json new file mode 100644 index 00000000..301ec784 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smelting/cracked_polished_rhyolite_bricks_from_polished_rhyolite_bricks_smelting.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": { + "item": "twigs:polished_rhyolite_bricks" + }, + "result": { + "id": "twigs:cracked_polished_rhyolite_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smelting/cracked_polished_schist_bricks_from_polished_schist_bricks_smelting.json b/src/main/generated/data/twigs/recipe/smelting/cracked_polished_schist_bricks_from_polished_schist_bricks_smelting.json new file mode 100644 index 00000000..c5b5dd57 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smelting/cracked_polished_schist_bricks_from_polished_schist_bricks_smelting.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": { + "item": "twigs:polished_schist_bricks" + }, + "result": { + "id": "twigs:cracked_polished_schist_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smelting/cracked_polished_tuff_bricks_from_polished_tuff_bricks_smelting.json b/src/main/generated/data/twigs/recipe/smelting/cracked_polished_tuff_bricks_from_polished_tuff_bricks_smelting.json new file mode 100644 index 00000000..4c0d303d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smelting/cracked_polished_tuff_bricks_from_polished_tuff_bricks_smelting.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": { + "item": "twigs:polished_tuff_bricks" + }, + "result": { + "id": "twigs:cracked_polished_tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smelting/cracked_silt_bricks_from_silt_bricks_smelting.json b/src/main/generated/data/twigs/recipe/smelting/cracked_silt_bricks_from_silt_bricks_smelting.json new file mode 100644 index 00000000..b7316889 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smelting/cracked_silt_bricks_from_silt_bricks_smelting.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": { + "item": "twigs:silt_bricks" + }, + "result": { + "id": "twigs:cracked_silt_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smelting/silt_brick_from_silt_ball_smelting.json b/src/main/generated/data/twigs/recipe/smelting/silt_brick_from_silt_ball_smelting.json new file mode 100644 index 00000000..f946b309 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smelting/silt_brick_from_silt_ball_smelting.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.3, + "ingredient": { + "item": "twigs:silt_ball" + }, + "result": { + "id": "twigs:silt_brick" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smooth_basalt_brick_slab.json b/src/main/generated/data/twigs/recipe/smooth_basalt_brick_slab.json new file mode 100644 index 00000000..1627e878 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smooth_basalt_brick_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:smooth_basalt_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:smooth_basalt_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smooth_basalt_brick_stairs.json b/src/main/generated/data/twigs/recipe/smooth_basalt_brick_stairs.json new file mode 100644 index 00000000..53bc3c9a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smooth_basalt_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:smooth_basalt_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:smooth_basalt_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smooth_basalt_brick_wall.json b/src/main/generated/data/twigs/recipe/smooth_basalt_brick_wall.json new file mode 100644 index 00000000..e348204b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smooth_basalt_brick_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:smooth_basalt_bricks" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:smooth_basalt_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smooth_basalt_bricks.json b/src/main/generated/data/twigs/recipe/smooth_basalt_bricks.json new file mode 100644 index 00000000..ffce87d5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smooth_basalt_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:smooth_basalt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:smooth_basalt_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smooth_stone_brick_slab.json b/src/main/generated/data/twigs/recipe/smooth_stone_brick_slab.json new file mode 100644 index 00000000..c9c36999 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smooth_stone_brick_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:smooth_stone_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:smooth_stone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smooth_stone_brick_stairs.json b/src/main/generated/data/twigs/recipe/smooth_stone_brick_stairs.json new file mode 100644 index 00000000..72e2238c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smooth_stone_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:smooth_stone_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:smooth_stone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smooth_stone_brick_wall.json b/src/main/generated/data/twigs/recipe/smooth_stone_brick_wall.json new file mode 100644 index 00000000..4d45c4ce --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smooth_stone_brick_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:smooth_stone_bricks" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:smooth_stone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/smooth_stone_bricks.json b/src/main/generated/data/twigs/recipe/smooth_stone_bricks.json new file mode 100644 index 00000000..c7c7018c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/smooth_stone_bricks.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:smooth_stone" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:smooth_stone_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/soul_lamp.json b/src/main/generated/data/twigs/recipe/soul_lamp.json new file mode 100644 index 00000000..bc8c0641 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/soul_lamp.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "F": { + "item": "minecraft:soul_sand" + }, + "S": { + "item": "minecraft:soul_torch" + }, + "i": { + "item": "minecraft:iron_ingot" + } + }, + "pattern": [ + "iii", + "iSi", + "iFi" + ], + "result": { + "count": 1, + "id": "twigs:soul_lamp" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/spruce_table.json b/src/main/generated/data/twigs/recipe/spruce_table.json new file mode 100644 index 00000000..0758cf00 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/spruce_table.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "O": { + "item": "minecraft:spruce_fence" + }, + "_": { + "item": "minecraft:spruce_slab" + } + }, + "pattern": [ + "___", + "O O", + "O O" + ], + "result": { + "count": 1, + "id": "twigs:spruce_table" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stone_column.json b/src/main/generated/data/twigs/recipe/stone_column.json new file mode 100644 index 00000000..ba08c244 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stone_column.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:stone" + } + }, + "pattern": [ + "###", + " # " + ], + "result": { + "count": 4, + "id": "twigs:stone_column" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_slab_from_black_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_slab_from_black_packed_silt.json new file mode 100644 index 00000000..f290627f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_slab_from_black_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:black_packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:black_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_slab_from_black_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_slab_from_black_silt_shingles.json new file mode 100644 index 00000000..23e3dce2 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_slab_from_black_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:black_silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:black_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_stairs_from_black_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_stairs_from_black_packed_silt.json new file mode 100644 index 00000000..d58f2548 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_stairs_from_black_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:black_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:black_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_stairs_from_black_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_stairs_from_black_silt_shingles.json new file mode 100644 index 00000000..9e49ac8d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_stairs_from_black_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:black_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:black_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_wall_from_black_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_wall_from_black_packed_silt.json new file mode 100644 index 00000000..038775e6 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_wall_from_black_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:black_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:black_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_wall_from_black_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_wall_from_black_silt_shingles.json new file mode 100644 index 00000000..f0fa35b2 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingle_wall_from_black_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:black_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:black_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingles_from_black_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingles_from_black_packed_silt.json new file mode 100644 index 00000000..5b9bf090 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/black_silt_shingles_from_black_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:black_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:black_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/blackstone_column_from_blackstone.json b/src/main/generated/data/twigs/recipe/stonecutting/blackstone_column_from_blackstone.json new file mode 100644 index 00000000..860da6b5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/blackstone_column_from_blackstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:blackstone" + }, + "result": { + "count": 1, + "id": "twigs:blackstone_column" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/bloodstone_slab_from_bloodstone.json b/src/main/generated/data/twigs/recipe/stonecutting/bloodstone_slab_from_bloodstone.json new file mode 100644 index 00000000..101e23b0 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/bloodstone_slab_from_bloodstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:bloodstone" + }, + "result": { + "count": 2, + "id": "twigs:bloodstone_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/bloodstone_stairs_from_bloodstone.json b/src/main/generated/data/twigs/recipe/stonecutting/bloodstone_stairs_from_bloodstone.json new file mode 100644 index 00000000..b33a2635 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/bloodstone_stairs_from_bloodstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:bloodstone" + }, + "result": { + "count": 1, + "id": "twigs:bloodstone_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/bloodstone_wall_from_bloodstone.json b/src/main/generated/data/twigs/recipe/stonecutting/bloodstone_wall_from_bloodstone.json new file mode 100644 index 00000000..4de1601d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/bloodstone_wall_from_bloodstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:bloodstone" + }, + "result": { + "count": 1, + "id": "twigs:bloodstone_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_slab_from_blue_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_slab_from_blue_packed_silt.json new file mode 100644 index 00000000..75a721b1 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_slab_from_blue_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:blue_packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:blue_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_slab_from_blue_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_slab_from_blue_silt_shingles.json new file mode 100644 index 00000000..6888180d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_slab_from_blue_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:blue_silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:blue_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_stairs_from_blue_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_stairs_from_blue_packed_silt.json new file mode 100644 index 00000000..4920a4b1 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_stairs_from_blue_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:blue_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:blue_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_stairs_from_blue_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_stairs_from_blue_silt_shingles.json new file mode 100644 index 00000000..79cc05f1 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_stairs_from_blue_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:blue_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:blue_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_wall_from_blue_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_wall_from_blue_packed_silt.json new file mode 100644 index 00000000..9c296831 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_wall_from_blue_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:blue_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:blue_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_wall_from_blue_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_wall_from_blue_silt_shingles.json new file mode 100644 index 00000000..ee3630ad --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingle_wall_from_blue_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:blue_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:blue_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingles_from_blue_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingles_from_blue_packed_silt.json new file mode 100644 index 00000000..0632d477 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/blue_silt_shingles_from_blue_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:blue_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:blue_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/brick_trail_from_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/brick_trail_from_bricks.json new file mode 100644 index 00000000..85b87323 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/brick_trail_from_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:bricks" + }, + "result": { + "count": 2, + "id": "twigs:brick_trail" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_slab_from_brown_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_slab_from_brown_packed_silt.json new file mode 100644 index 00000000..87dd4b66 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_slab_from_brown_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:brown_packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:brown_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_slab_from_brown_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_slab_from_brown_silt_shingles.json new file mode 100644 index 00000000..32bad7f3 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_slab_from_brown_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:brown_silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:brown_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_stairs_from_brown_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_stairs_from_brown_packed_silt.json new file mode 100644 index 00000000..7e1acfcb --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_stairs_from_brown_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:brown_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:brown_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_stairs_from_brown_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_stairs_from_brown_silt_shingles.json new file mode 100644 index 00000000..6b191c03 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_stairs_from_brown_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:brown_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:brown_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_wall_from_brown_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_wall_from_brown_packed_silt.json new file mode 100644 index 00000000..0dab1098 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_wall_from_brown_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:brown_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:brown_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_wall_from_brown_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_wall_from_brown_silt_shingles.json new file mode 100644 index 00000000..ed292041 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingle_wall_from_brown_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:brown_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:brown_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingles_from_brown_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingles_from_brown_packed_silt.json new file mode 100644 index 00000000..6666c448 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/brown_silt_shingles_from_brown_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:brown_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:brown_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/calcite_slab_from_calcite.json b/src/main/generated/data/twigs/recipe/stonecutting/calcite_slab_from_calcite.json new file mode 100644 index 00000000..b82e9620 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/calcite_slab_from_calcite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:calcite" + }, + "result": { + "count": 2, + "id": "twigs:calcite_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/calcite_stairs_from_calcite.json b/src/main/generated/data/twigs/recipe/stonecutting/calcite_stairs_from_calcite.json new file mode 100644 index 00000000..f2287953 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/calcite_stairs_from_calcite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:calcite" + }, + "result": { + "count": 1, + "id": "twigs:calcite_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/calcite_wall_from_calcite.json b/src/main/generated/data/twigs/recipe/stonecutting/calcite_wall_from_calcite.json new file mode 100644 index 00000000..6f6d7fc7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/calcite_wall_from_calcite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:calcite" + }, + "result": { + "count": 1, + "id": "twigs:calcite_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/chiseled_bricks_from_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/chiseled_bricks_from_bricks.json new file mode 100644 index 00000000..9f629d1c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/chiseled_bricks_from_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:bricks" + }, + "result": { + "count": 1, + "id": "twigs:chiseled_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/chiseled_silt_bricks_from_silt_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/chiseled_silt_bricks_from_silt_bricks.json new file mode 100644 index 00000000..a66da42f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/chiseled_silt_bricks_from_silt_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:silt_bricks" + }, + "result": { + "count": 1, + "id": "twigs:chiseled_silt_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/chiseled_smooth_basalt_bricks_from_smooth_basalt_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/chiseled_smooth_basalt_bricks_from_smooth_basalt_bricks.json new file mode 100644 index 00000000..b376daf8 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/chiseled_smooth_basalt_bricks_from_smooth_basalt_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:smooth_basalt_bricks" + }, + "result": { + "count": 1, + "id": "twigs:chiseled_smooth_basalt_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_slab_from_cobblestone.json b/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_slab_from_cobblestone.json new file mode 100644 index 00000000..64f8a98d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_slab_from_cobblestone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cobblestone" + }, + "result": { + "count": 2, + "id": "twigs:cobblestone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_slab_from_cobblestone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_slab_from_cobblestone_bricks.json new file mode 100644 index 00000000..734bede1 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_slab_from_cobblestone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:cobblestone_bricks" + }, + "result": { + "count": 2, + "id": "twigs:cobblestone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_stairs_from_cobblestone.json b/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_stairs_from_cobblestone.json new file mode 100644 index 00000000..29ce94b5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_stairs_from_cobblestone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cobblestone" + }, + "result": { + "count": 1, + "id": "twigs:cobblestone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_stairs_from_cobblestone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_stairs_from_cobblestone_bricks.json new file mode 100644 index 00000000..cf463ea3 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_stairs_from_cobblestone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:cobblestone_bricks" + }, + "result": { + "count": 1, + "id": "twigs:cobblestone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_wall_from_cobblestone.json b/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_wall_from_cobblestone.json new file mode 100644 index 00000000..728756a8 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_wall_from_cobblestone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cobblestone" + }, + "result": { + "count": 1, + "id": "twigs:cobblestone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_wall_from_cobblestone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_wall_from_cobblestone_bricks.json new file mode 100644 index 00000000..679345f2 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_brick_wall_from_cobblestone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:cobblestone_bricks" + }, + "result": { + "count": 1, + "id": "twigs:cobblestone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_bricks_from_cobblestone.json b/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_bricks_from_cobblestone.json new file mode 100644 index 00000000..51c1d5af --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/cobblestone_bricks_from_cobblestone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cobblestone" + }, + "result": { + "count": 1, + "id": "twigs:cobblestone_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/copper_pillar_from_copper_block.json b/src/main/generated/data/twigs/recipe/stonecutting/copper_pillar_from_copper_block.json new file mode 100644 index 00000000..2b1a30bc --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/copper_pillar_from_copper_block.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:copper_block" + }, + "result": { + "count": 4, + "id": "twigs:copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/copper_pillar_from_cut_copper_slab.json b/src/main/generated/data/twigs/recipe/stonecutting/copper_pillar_from_cut_copper_slab.json new file mode 100644 index 00000000..a6b82c09 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/copper_pillar_from_cut_copper_slab.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:cut_copper_slab" + }, + "result": { + "count": 1, + "id": "twigs:copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/cut_amethyst_from_amethyst_block.json b/src/main/generated/data/twigs/recipe/stonecutting/cut_amethyst_from_amethyst_block.json new file mode 100644 index 00000000..02397f62 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/cut_amethyst_from_amethyst_block.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:amethyst_block" + }, + "result": { + "count": 1, + "id": "twigs:cut_amethyst" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/cut_amethyst_from_polished_amethyst.json b/src/main/generated/data/twigs/recipe/stonecutting/cut_amethyst_from_polished_amethyst.json new file mode 100644 index 00000000..a524042c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/cut_amethyst_from_polished_amethyst.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_amethyst" + }, + "result": { + "count": 1, + "id": "twigs:cut_amethyst" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_slab_from_cyan_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_slab_from_cyan_packed_silt.json new file mode 100644 index 00000000..05f97c27 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_slab_from_cyan_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:cyan_packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:cyan_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_slab_from_cyan_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_slab_from_cyan_silt_shingles.json new file mode 100644 index 00000000..a6e761df --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_slab_from_cyan_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:cyan_silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:cyan_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_stairs_from_cyan_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_stairs_from_cyan_packed_silt.json new file mode 100644 index 00000000..2e971d8b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_stairs_from_cyan_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:cyan_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:cyan_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_stairs_from_cyan_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_stairs_from_cyan_silt_shingles.json new file mode 100644 index 00000000..d5ac61dd --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_stairs_from_cyan_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:cyan_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:cyan_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_wall_from_cyan_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_wall_from_cyan_packed_silt.json new file mode 100644 index 00000000..d668b7fd --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_wall_from_cyan_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:cyan_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:cyan_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_wall_from_cyan_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_wall_from_cyan_silt_shingles.json new file mode 100644 index 00000000..1ed403eb --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingle_wall_from_cyan_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:cyan_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:cyan_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingles_from_cyan_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingles_from_cyan_packed_silt.json new file mode 100644 index 00000000..badd6052 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/cyan_silt_shingles_from_cyan_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:cyan_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:cyan_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/deepslate_column_from_deepslate.json b/src/main/generated/data/twigs/recipe/stonecutting/deepslate_column_from_deepslate.json new file mode 100644 index 00000000..2c5fd6fc --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/deepslate_column_from_deepslate.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:deepslate" + }, + "result": { + "count": 1, + "id": "twigs:deepslate_column" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/exposed_copper_pillar_from_exposed_copper.json b/src/main/generated/data/twigs/recipe/stonecutting/exposed_copper_pillar_from_exposed_copper.json new file mode 100644 index 00000000..fd708e27 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/exposed_copper_pillar_from_exposed_copper.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:exposed_copper" + }, + "result": { + "count": 4, + "id": "twigs:exposed_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/exposed_copper_pillar_from_exposed_cut_copper_slab.json b/src/main/generated/data/twigs/recipe/stonecutting/exposed_copper_pillar_from_exposed_cut_copper_slab.json new file mode 100644 index 00000000..cfa561c4 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/exposed_copper_pillar_from_exposed_cut_copper_slab.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:exposed_cut_copper_slab" + }, + "result": { + "count": 1, + "id": "twigs:exposed_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_slab_from_gray_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_slab_from_gray_packed_silt.json new file mode 100644 index 00000000..2a9e3c7b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_slab_from_gray_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:gray_packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:gray_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_slab_from_gray_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_slab_from_gray_silt_shingles.json new file mode 100644 index 00000000..77c71986 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_slab_from_gray_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:gray_silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:gray_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_stairs_from_gray_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_stairs_from_gray_packed_silt.json new file mode 100644 index 00000000..3c8bcb37 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_stairs_from_gray_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:gray_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:gray_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_stairs_from_gray_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_stairs_from_gray_silt_shingles.json new file mode 100644 index 00000000..f4690bc3 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_stairs_from_gray_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:gray_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:gray_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_wall_from_gray_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_wall_from_gray_packed_silt.json new file mode 100644 index 00000000..fc0fa5a7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_wall_from_gray_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:gray_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:gray_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_wall_from_gray_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_wall_from_gray_silt_shingles.json new file mode 100644 index 00000000..4fecb6b2 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingle_wall_from_gray_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:gray_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:gray_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingles_from_gray_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingles_from_gray_packed_silt.json new file mode 100644 index 00000000..ae7fcae6 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/gray_silt_shingles_from_gray_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:gray_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:gray_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_slab_from_green_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_slab_from_green_packed_silt.json new file mode 100644 index 00000000..6abfbecc --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_slab_from_green_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:green_packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:green_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_slab_from_green_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_slab_from_green_silt_shingles.json new file mode 100644 index 00000000..72dd57aa --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_slab_from_green_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:green_silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:green_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_stairs_from_green_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_stairs_from_green_packed_silt.json new file mode 100644 index 00000000..d19eea06 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_stairs_from_green_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:green_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:green_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_stairs_from_green_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_stairs_from_green_silt_shingles.json new file mode 100644 index 00000000..3db76e91 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_stairs_from_green_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:green_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:green_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_wall_from_green_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_wall_from_green_packed_silt.json new file mode 100644 index 00000000..ba37dd07 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_wall_from_green_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:green_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:green_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_wall_from_green_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_wall_from_green_silt_shingles.json new file mode 100644 index 00000000..9fca05cb --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingle_wall_from_green_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:green_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:green_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingles_from_green_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingles_from_green_packed_silt.json new file mode 100644 index 00000000..e3d1d695 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/green_silt_shingles_from_green_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:green_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:green_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_slab_from_light_blue_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_slab_from_light_blue_packed_silt.json new file mode 100644 index 00000000..4adc3486 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_slab_from_light_blue_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:light_blue_packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:light_blue_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_slab_from_light_blue_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_slab_from_light_blue_silt_shingles.json new file mode 100644 index 00000000..aa467435 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_slab_from_light_blue_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:light_blue_silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:light_blue_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_stairs_from_light_blue_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_stairs_from_light_blue_packed_silt.json new file mode 100644 index 00000000..9f7ff6c5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_stairs_from_light_blue_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:light_blue_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:light_blue_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_stairs_from_light_blue_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_stairs_from_light_blue_silt_shingles.json new file mode 100644 index 00000000..7ecd437b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_stairs_from_light_blue_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:light_blue_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:light_blue_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_wall_from_light_blue_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_wall_from_light_blue_packed_silt.json new file mode 100644 index 00000000..aa3b86dd --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_wall_from_light_blue_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:light_blue_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:light_blue_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_wall_from_light_blue_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_wall_from_light_blue_silt_shingles.json new file mode 100644 index 00000000..dda867b8 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingle_wall_from_light_blue_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:light_blue_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:light_blue_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingles_from_light_blue_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingles_from_light_blue_packed_silt.json new file mode 100644 index 00000000..aef0d3af --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/light_blue_silt_shingles_from_light_blue_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:light_blue_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:light_blue_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_slab_from_light_gray_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_slab_from_light_gray_packed_silt.json new file mode 100644 index 00000000..b652fa1d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_slab_from_light_gray_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:light_gray_packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:light_gray_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_slab_from_light_gray_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_slab_from_light_gray_silt_shingles.json new file mode 100644 index 00000000..7141ad60 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_slab_from_light_gray_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:light_gray_silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:light_gray_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_stairs_from_light_gray_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_stairs_from_light_gray_packed_silt.json new file mode 100644 index 00000000..188d0ec4 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_stairs_from_light_gray_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:light_gray_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:light_gray_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_stairs_from_light_gray_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_stairs_from_light_gray_silt_shingles.json new file mode 100644 index 00000000..f0aad303 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_stairs_from_light_gray_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:light_gray_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:light_gray_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_wall_from_light_gray_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_wall_from_light_gray_packed_silt.json new file mode 100644 index 00000000..25875bdc --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_wall_from_light_gray_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:light_gray_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:light_gray_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_wall_from_light_gray_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_wall_from_light_gray_silt_shingles.json new file mode 100644 index 00000000..49e5966c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingle_wall_from_light_gray_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:light_gray_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:light_gray_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingles_from_light_gray_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingles_from_light_gray_packed_silt.json new file mode 100644 index 00000000..88383795 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/light_gray_silt_shingles_from_light_gray_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:light_gray_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:light_gray_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_slab_from_lime_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_slab_from_lime_packed_silt.json new file mode 100644 index 00000000..0b5cef73 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_slab_from_lime_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:lime_packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:lime_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_slab_from_lime_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_slab_from_lime_silt_shingles.json new file mode 100644 index 00000000..153b6b34 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_slab_from_lime_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:lime_silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:lime_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_stairs_from_lime_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_stairs_from_lime_packed_silt.json new file mode 100644 index 00000000..df026f19 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_stairs_from_lime_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:lime_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:lime_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_stairs_from_lime_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_stairs_from_lime_silt_shingles.json new file mode 100644 index 00000000..4e83993d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_stairs_from_lime_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:lime_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:lime_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_wall_from_lime_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_wall_from_lime_packed_silt.json new file mode 100644 index 00000000..f65e081e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_wall_from_lime_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:lime_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:lime_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_wall_from_lime_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_wall_from_lime_silt_shingles.json new file mode 100644 index 00000000..b09b2b5e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingle_wall_from_lime_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:lime_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:lime_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingles_from_lime_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingles_from_lime_packed_silt.json new file mode 100644 index 00000000..a09b0527 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/lime_silt_shingles_from_lime_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:lime_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:lime_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_slab_from_magenta_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_slab_from_magenta_packed_silt.json new file mode 100644 index 00000000..9afdd4b5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_slab_from_magenta_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:magenta_packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:magenta_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_slab_from_magenta_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_slab_from_magenta_silt_shingles.json new file mode 100644 index 00000000..ea424048 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_slab_from_magenta_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:magenta_silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:magenta_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_stairs_from_magenta_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_stairs_from_magenta_packed_silt.json new file mode 100644 index 00000000..bbba6199 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_stairs_from_magenta_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:magenta_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:magenta_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_stairs_from_magenta_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_stairs_from_magenta_silt_shingles.json new file mode 100644 index 00000000..ad7bc847 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_stairs_from_magenta_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:magenta_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:magenta_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_wall_from_magenta_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_wall_from_magenta_packed_silt.json new file mode 100644 index 00000000..61d8b909 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_wall_from_magenta_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:magenta_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:magenta_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_wall_from_magenta_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_wall_from_magenta_silt_shingles.json new file mode 100644 index 00000000..3b938952 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingle_wall_from_magenta_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:magenta_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:magenta_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingles_from_magenta_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingles_from_magenta_packed_silt.json new file mode 100644 index 00000000..68c33c8a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/magenta_silt_shingles_from_magenta_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:magenta_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:magenta_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/mixed_bricks_from_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/mixed_bricks_from_bricks.json new file mode 100644 index 00000000..54e77b3a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/mixed_bricks_from_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:bricks" + }, + "result": { + "count": 1, + "id": "twigs:mixed_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/mixed_silt_bricks_from_silt_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/mixed_silt_bricks_from_silt_bricks.json new file mode 100644 index 00000000..b1fd0b07 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/mixed_silt_bricks_from_silt_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:silt_bricks" + }, + "result": { + "count": 1, + "id": "twigs:mixed_silt_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/mossy_brick_slab_from_mossy_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/mossy_brick_slab_from_mossy_bricks.json new file mode 100644 index 00000000..d51d1448 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/mossy_brick_slab_from_mossy_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:mossy_bricks" + }, + "result": { + "count": 2, + "id": "twigs:mossy_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/mossy_brick_stairs_from_mossy_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/mossy_brick_stairs_from_mossy_bricks.json new file mode 100644 index 00000000..039327aa --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/mossy_brick_stairs_from_mossy_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:mossy_bricks" + }, + "result": { + "count": 1, + "id": "twigs:mossy_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/mossy_brick_wall_from_mossy_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/mossy_brick_wall_from_mossy_bricks.json new file mode 100644 index 00000000..9468f1d5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/mossy_brick_wall_from_mossy_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:mossy_bricks" + }, + "result": { + "count": 1, + "id": "twigs:mossy_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_slab_from_mossy_cobblestone.json b/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_slab_from_mossy_cobblestone.json new file mode 100644 index 00000000..a498b3e2 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_slab_from_mossy_cobblestone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:mossy_cobblestone" + }, + "result": { + "count": 2, + "id": "twigs:mossy_cobblestone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_slab_from_mossy_cobblestone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_slab_from_mossy_cobblestone_bricks.json new file mode 100644 index 00000000..d2923cdb --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_slab_from_mossy_cobblestone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:mossy_cobblestone_bricks" + }, + "result": { + "count": 2, + "id": "twigs:mossy_cobblestone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_stairs_from_mossy_cobblestone.json b/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_stairs_from_mossy_cobblestone.json new file mode 100644 index 00000000..ebf61d57 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_stairs_from_mossy_cobblestone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:mossy_cobblestone" + }, + "result": { + "count": 1, + "id": "twigs:mossy_cobblestone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_stairs_from_mossy_cobblestone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_stairs_from_mossy_cobblestone_bricks.json new file mode 100644 index 00000000..e4764308 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_stairs_from_mossy_cobblestone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:mossy_cobblestone_bricks" + }, + "result": { + "count": 1, + "id": "twigs:mossy_cobblestone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_wall_from_mossy_cobblestone.json b/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_wall_from_mossy_cobblestone.json new file mode 100644 index 00000000..1c0a0d23 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_wall_from_mossy_cobblestone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:mossy_cobblestone" + }, + "result": { + "count": 1, + "id": "twigs:mossy_cobblestone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_wall_from_mossy_cobblestone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_wall_from_mossy_cobblestone_bricks.json new file mode 100644 index 00000000..c5cdb4b6 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_brick_wall_from_mossy_cobblestone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:mossy_cobblestone_bricks" + }, + "result": { + "count": 1, + "id": "twigs:mossy_cobblestone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_bricks_from_mossy_cobblestone.json b/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_bricks_from_mossy_cobblestone.json new file mode 100644 index 00000000..f9387d55 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/mossy_cobblestone_bricks_from_mossy_cobblestone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:mossy_cobblestone" + }, + "result": { + "count": 1, + "id": "twigs:mossy_cobblestone_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_slab_from_orange_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_slab_from_orange_packed_silt.json new file mode 100644 index 00000000..76727732 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_slab_from_orange_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:orange_packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:orange_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_slab_from_orange_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_slab_from_orange_silt_shingles.json new file mode 100644 index 00000000..267febce --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_slab_from_orange_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:orange_silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:orange_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_stairs_from_orange_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_stairs_from_orange_packed_silt.json new file mode 100644 index 00000000..bda18b54 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_stairs_from_orange_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:orange_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:orange_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_stairs_from_orange_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_stairs_from_orange_silt_shingles.json new file mode 100644 index 00000000..946bdd54 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_stairs_from_orange_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:orange_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:orange_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_wall_from_orange_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_wall_from_orange_packed_silt.json new file mode 100644 index 00000000..6ea08769 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_wall_from_orange_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:orange_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:orange_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_wall_from_orange_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_wall_from_orange_silt_shingles.json new file mode 100644 index 00000000..152cf7b4 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingle_wall_from_orange_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:orange_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:orange_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingles_from_orange_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingles_from_orange_packed_silt.json new file mode 100644 index 00000000..20f8cd18 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/orange_silt_shingles_from_orange_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:orange_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:orange_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/oxidized_copper_pillar_from_oxidized_copper.json b/src/main/generated/data/twigs/recipe/stonecutting/oxidized_copper_pillar_from_oxidized_copper.json new file mode 100644 index 00000000..f59e3640 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/oxidized_copper_pillar_from_oxidized_copper.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:oxidized_copper" + }, + "result": { + "count": 4, + "id": "twigs:oxidized_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/oxidized_copper_pillar_from_oxidized_cut_copper_slab.json b/src/main/generated/data/twigs/recipe/stonecutting/oxidized_copper_pillar_from_oxidized_cut_copper_slab.json new file mode 100644 index 00000000..302238ec --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/oxidized_copper_pillar_from_oxidized_cut_copper_slab.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:oxidized_cut_copper_slab" + }, + "result": { + "count": 1, + "id": "twigs:oxidized_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_slab_from_pink_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_slab_from_pink_packed_silt.json new file mode 100644 index 00000000..7f7af801 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_slab_from_pink_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:pink_packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:pink_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_slab_from_pink_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_slab_from_pink_silt_shingles.json new file mode 100644 index 00000000..2b1517cd --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_slab_from_pink_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:pink_silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:pink_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_stairs_from_pink_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_stairs_from_pink_packed_silt.json new file mode 100644 index 00000000..abf793f7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_stairs_from_pink_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:pink_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:pink_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_stairs_from_pink_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_stairs_from_pink_silt_shingles.json new file mode 100644 index 00000000..22a02838 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_stairs_from_pink_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:pink_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:pink_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_wall_from_pink_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_wall_from_pink_packed_silt.json new file mode 100644 index 00000000..6e902301 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_wall_from_pink_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:pink_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:pink_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_wall_from_pink_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_wall_from_pink_silt_shingles.json new file mode 100644 index 00000000..8e3f9bb0 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingle_wall_from_pink_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:pink_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:pink_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingles_from_pink_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingles_from_pink_packed_silt.json new file mode 100644 index 00000000..108898de --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/pink_silt_shingles_from_pink_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:pink_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:pink_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_amethyst_from_amethyst_block.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_amethyst_from_amethyst_block.json new file mode 100644 index 00000000..efd1057d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_amethyst_from_amethyst_block.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:amethyst_block" + }, + "result": { + "count": 1, + "id": "twigs:polished_amethyst" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_basalt_bricks_from_polished_basalt.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_basalt_bricks_from_polished_basalt.json new file mode 100644 index 00000000..d684ba6c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_basalt_bricks_from_polished_basalt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:polished_basalt" + }, + "result": { + "count": 1, + "id": "twigs:polished_basalt_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_slab_from_bloodstone.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_slab_from_bloodstone.json new file mode 100644 index 00000000..79fadcec --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_slab_from_bloodstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:bloodstone" + }, + "result": { + "count": 2, + "id": "twigs:polished_bloodstone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_slab_from_polished_bloodstone.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_slab_from_polished_bloodstone.json new file mode 100644 index 00000000..1d19f4a2 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_slab_from_polished_bloodstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_bloodstone" + }, + "result": { + "count": 2, + "id": "twigs:polished_bloodstone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_slab_from_polished_bloodstone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_slab_from_polished_bloodstone_bricks.json new file mode 100644 index 00000000..4a56dc44 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_slab_from_polished_bloodstone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_bloodstone_bricks" + }, + "result": { + "count": 2, + "id": "twigs:polished_bloodstone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_stairs_from_bloodstone.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_stairs_from_bloodstone.json new file mode 100644 index 00000000..274b452e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_stairs_from_bloodstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:bloodstone" + }, + "result": { + "count": 1, + "id": "twigs:polished_bloodstone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_stairs_from_polished_bloodstone.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_stairs_from_polished_bloodstone.json new file mode 100644 index 00000000..eb3a81b1 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_stairs_from_polished_bloodstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_bloodstone" + }, + "result": { + "count": 1, + "id": "twigs:polished_bloodstone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_stairs_from_polished_bloodstone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_stairs_from_polished_bloodstone_bricks.json new file mode 100644 index 00000000..6fc65603 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_stairs_from_polished_bloodstone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_bloodstone_bricks" + }, + "result": { + "count": 1, + "id": "twigs:polished_bloodstone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_wall_from_bloodstone.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_wall_from_bloodstone.json new file mode 100644 index 00000000..2252e76f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_wall_from_bloodstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:bloodstone" + }, + "result": { + "count": 1, + "id": "twigs:polished_bloodstone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_wall_from_polished_bloodstone.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_wall_from_polished_bloodstone.json new file mode 100644 index 00000000..d2dd44d5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_wall_from_polished_bloodstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_bloodstone" + }, + "result": { + "count": 1, + "id": "twigs:polished_bloodstone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_wall_from_polished_bloodstone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_wall_from_polished_bloodstone_bricks.json new file mode 100644 index 00000000..ab3b5285 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_brick_wall_from_polished_bloodstone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_bloodstone_bricks" + }, + "result": { + "count": 1, + "id": "twigs:polished_bloodstone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_bricks_from_bloodstone.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_bricks_from_bloodstone.json new file mode 100644 index 00000000..98a16e2f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_bricks_from_bloodstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:bloodstone" + }, + "result": { + "count": 1, + "id": "twigs:polished_bloodstone_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_bricks_from_polished_bloodstone.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_bricks_from_polished_bloodstone.json new file mode 100644 index 00000000..68980a0d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_bricks_from_polished_bloodstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_bloodstone" + }, + "result": { + "count": 1, + "id": "twigs:polished_bloodstone_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_from_bloodstone.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_from_bloodstone.json new file mode 100644 index 00000000..107219fc --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_from_bloodstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:bloodstone" + }, + "result": { + "count": 1, + "id": "twigs:polished_bloodstone" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_slab_from_bloodstone.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_slab_from_bloodstone.json new file mode 100644 index 00000000..2a541f77 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_slab_from_bloodstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:bloodstone" + }, + "result": { + "count": 2, + "id": "twigs:polished_bloodstone_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_slab_from_polished_bloodstone.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_slab_from_polished_bloodstone.json new file mode 100644 index 00000000..89f9090e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_slab_from_polished_bloodstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_bloodstone" + }, + "result": { + "count": 2, + "id": "twigs:polished_bloodstone_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_stairs_from_bloodstone.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_stairs_from_bloodstone.json new file mode 100644 index 00000000..373f2614 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_stairs_from_bloodstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:bloodstone" + }, + "result": { + "count": 1, + "id": "twigs:polished_bloodstone_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_stairs_from_polished_bloodstone.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_stairs_from_polished_bloodstone.json new file mode 100644 index 00000000..fcb21c95 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_bloodstone_stairs_from_polished_bloodstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_bloodstone" + }, + "result": { + "count": 1, + "id": "twigs:polished_bloodstone_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_slab_from_calcite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_slab_from_calcite.json new file mode 100644 index 00000000..b95146a2 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_slab_from_calcite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:calcite" + }, + "result": { + "count": 2, + "id": "twigs:polished_calcite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_slab_from_polished_calcite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_slab_from_polished_calcite.json new file mode 100644 index 00000000..59f0aae3 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_slab_from_polished_calcite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_calcite" + }, + "result": { + "count": 2, + "id": "twigs:polished_calcite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_slab_from_polished_calcite_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_slab_from_polished_calcite_bricks.json new file mode 100644 index 00000000..c2c54a64 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_slab_from_polished_calcite_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_calcite_bricks" + }, + "result": { + "count": 2, + "id": "twigs:polished_calcite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_stairs_from_calcite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_stairs_from_calcite.json new file mode 100644 index 00000000..dfa2dcef --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_stairs_from_calcite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:calcite" + }, + "result": { + "count": 1, + "id": "twigs:polished_calcite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_stairs_from_polished_calcite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_stairs_from_polished_calcite.json new file mode 100644 index 00000000..5a5295ea --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_stairs_from_polished_calcite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_calcite" + }, + "result": { + "count": 1, + "id": "twigs:polished_calcite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_stairs_from_polished_calcite_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_stairs_from_polished_calcite_bricks.json new file mode 100644 index 00000000..4c259b2a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_stairs_from_polished_calcite_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_calcite_bricks" + }, + "result": { + "count": 1, + "id": "twigs:polished_calcite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_wall_from_calcite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_wall_from_calcite.json new file mode 100644 index 00000000..7e53fa2c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_wall_from_calcite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:calcite" + }, + "result": { + "count": 1, + "id": "twigs:polished_calcite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_wall_from_polished_calcite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_wall_from_polished_calcite.json new file mode 100644 index 00000000..34f21987 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_wall_from_polished_calcite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_calcite" + }, + "result": { + "count": 1, + "id": "twigs:polished_calcite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_wall_from_polished_calcite_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_wall_from_polished_calcite_bricks.json new file mode 100644 index 00000000..a3049573 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_brick_wall_from_polished_calcite_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_calcite_bricks" + }, + "result": { + "count": 1, + "id": "twigs:polished_calcite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_bricks_from_calcite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_bricks_from_calcite.json new file mode 100644 index 00000000..66768444 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_bricks_from_calcite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:calcite" + }, + "result": { + "count": 1, + "id": "twigs:polished_calcite_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_bricks_from_polished_calcite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_bricks_from_polished_calcite.json new file mode 100644 index 00000000..974d9802 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_bricks_from_polished_calcite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_calcite" + }, + "result": { + "count": 1, + "id": "twigs:polished_calcite_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_from_calcite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_from_calcite.json new file mode 100644 index 00000000..0df341d3 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_from_calcite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:calcite" + }, + "result": { + "count": 1, + "id": "twigs:polished_calcite" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_slab_from_calcite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_slab_from_calcite.json new file mode 100644 index 00000000..d29b96a5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_slab_from_calcite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:calcite" + }, + "result": { + "count": 2, + "id": "twigs:polished_calcite_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_slab_from_polished_calcite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_slab_from_polished_calcite.json new file mode 100644 index 00000000..58350276 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_slab_from_polished_calcite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_calcite" + }, + "result": { + "count": 2, + "id": "twigs:polished_calcite_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_stairs_from_calcite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_stairs_from_calcite.json new file mode 100644 index 00000000..0226bb08 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_stairs_from_calcite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:calcite" + }, + "result": { + "count": 1, + "id": "twigs:polished_calcite_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_stairs_from_polished_calcite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_stairs_from_polished_calcite.json new file mode 100644 index 00000000..eccf8a7c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_calcite_stairs_from_polished_calcite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_calcite" + }, + "result": { + "count": 1, + "id": "twigs:polished_calcite_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_slab_from_polished_rhyolite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_slab_from_polished_rhyolite.json new file mode 100644 index 00000000..a8d59809 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_slab_from_polished_rhyolite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_rhyolite" + }, + "result": { + "count": 2, + "id": "twigs:polished_rhyolite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_slab_from_polished_rhyolite_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_slab_from_polished_rhyolite_bricks.json new file mode 100644 index 00000000..376fa38b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_slab_from_polished_rhyolite_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_rhyolite_bricks" + }, + "result": { + "count": 2, + "id": "twigs:polished_rhyolite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_slab_from_rhyolite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_slab_from_rhyolite.json new file mode 100644 index 00000000..e0014b15 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_slab_from_rhyolite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:rhyolite" + }, + "result": { + "count": 2, + "id": "twigs:polished_rhyolite_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_stairs_from_polished_rhyolite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_stairs_from_polished_rhyolite.json new file mode 100644 index 00000000..02121ffa --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_stairs_from_polished_rhyolite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_rhyolite" + }, + "result": { + "count": 1, + "id": "twigs:polished_rhyolite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_stairs_from_polished_rhyolite_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_stairs_from_polished_rhyolite_bricks.json new file mode 100644 index 00000000..503b6aef --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_stairs_from_polished_rhyolite_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_rhyolite_bricks" + }, + "result": { + "count": 1, + "id": "twigs:polished_rhyolite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_stairs_from_rhyolite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_stairs_from_rhyolite.json new file mode 100644 index 00000000..11f9d95a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_stairs_from_rhyolite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:rhyolite" + }, + "result": { + "count": 1, + "id": "twigs:polished_rhyolite_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_wall_from_polished_rhyolite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_wall_from_polished_rhyolite.json new file mode 100644 index 00000000..e40651be --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_wall_from_polished_rhyolite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_rhyolite" + }, + "result": { + "count": 1, + "id": "twigs:polished_rhyolite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_wall_from_polished_rhyolite_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_wall_from_polished_rhyolite_bricks.json new file mode 100644 index 00000000..a5389a14 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_wall_from_polished_rhyolite_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_rhyolite_bricks" + }, + "result": { + "count": 1, + "id": "twigs:polished_rhyolite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_wall_from_rhyolite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_wall_from_rhyolite.json new file mode 100644 index 00000000..c3ac5e30 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_brick_wall_from_rhyolite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:rhyolite" + }, + "result": { + "count": 1, + "id": "twigs:polished_rhyolite_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_bricks_from_polished_rhyolite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_bricks_from_polished_rhyolite.json new file mode 100644 index 00000000..17dbb47b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_bricks_from_polished_rhyolite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_rhyolite" + }, + "result": { + "count": 1, + "id": "twigs:polished_rhyolite_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_bricks_from_rhyolite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_bricks_from_rhyolite.json new file mode 100644 index 00000000..e4431bde --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_bricks_from_rhyolite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:rhyolite" + }, + "result": { + "count": 1, + "id": "twigs:polished_rhyolite_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_from_rhyolite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_from_rhyolite.json new file mode 100644 index 00000000..d215f73f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_from_rhyolite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:rhyolite" + }, + "result": { + "count": 1, + "id": "twigs:polished_rhyolite" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_slab_from_polished_rhyolite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_slab_from_polished_rhyolite.json new file mode 100644 index 00000000..fe4005f2 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_slab_from_polished_rhyolite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_rhyolite" + }, + "result": { + "count": 2, + "id": "twigs:polished_rhyolite_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_slab_from_rhyolite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_slab_from_rhyolite.json new file mode 100644 index 00000000..0fc8a546 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_slab_from_rhyolite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:rhyolite" + }, + "result": { + "count": 2, + "id": "twigs:polished_rhyolite_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_stairs_from_polished_rhyolite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_stairs_from_polished_rhyolite.json new file mode 100644 index 00000000..6b594fcf --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_stairs_from_polished_rhyolite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_rhyolite" + }, + "result": { + "count": 1, + "id": "twigs:polished_rhyolite_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_stairs_from_rhyolite.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_stairs_from_rhyolite.json new file mode 100644 index 00000000..ddc81a12 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_rhyolite_stairs_from_rhyolite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:rhyolite" + }, + "result": { + "count": 1, + "id": "twigs:polished_rhyolite_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_slab_from_polished_schist.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_slab_from_polished_schist.json new file mode 100644 index 00000000..dc49f2a7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_slab_from_polished_schist.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_schist" + }, + "result": { + "count": 2, + "id": "twigs:polished_schist_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_slab_from_polished_schist_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_slab_from_polished_schist_bricks.json new file mode 100644 index 00000000..86e2f4a7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_slab_from_polished_schist_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_schist_bricks" + }, + "result": { + "count": 2, + "id": "twigs:polished_schist_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_slab_from_schist.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_slab_from_schist.json new file mode 100644 index 00000000..ef6b9c69 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_slab_from_schist.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:schist" + }, + "result": { + "count": 2, + "id": "twigs:polished_schist_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_stairs_from_polished_schist.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_stairs_from_polished_schist.json new file mode 100644 index 00000000..a0677197 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_stairs_from_polished_schist.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_schist" + }, + "result": { + "count": 1, + "id": "twigs:polished_schist_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_stairs_from_polished_schist_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_stairs_from_polished_schist_bricks.json new file mode 100644 index 00000000..33eb6e41 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_stairs_from_polished_schist_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_schist_bricks" + }, + "result": { + "count": 1, + "id": "twigs:polished_schist_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_stairs_from_schist.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_stairs_from_schist.json new file mode 100644 index 00000000..f0248c80 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_stairs_from_schist.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:schist" + }, + "result": { + "count": 1, + "id": "twigs:polished_schist_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_wall_from_polished_schist.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_wall_from_polished_schist.json new file mode 100644 index 00000000..ec47ec1e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_wall_from_polished_schist.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_schist" + }, + "result": { + "count": 1, + "id": "twigs:polished_schist_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_wall_from_polished_schist_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_wall_from_polished_schist_bricks.json new file mode 100644 index 00000000..7f22e602 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_wall_from_polished_schist_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_schist_bricks" + }, + "result": { + "count": 1, + "id": "twigs:polished_schist_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_wall_from_schist.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_wall_from_schist.json new file mode 100644 index 00000000..51722b2d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_brick_wall_from_schist.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:schist" + }, + "result": { + "count": 1, + "id": "twigs:polished_schist_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_bricks_from_polished_schist.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_bricks_from_polished_schist.json new file mode 100644 index 00000000..7d048d6d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_bricks_from_polished_schist.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_schist" + }, + "result": { + "count": 1, + "id": "twigs:polished_schist_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_bricks_from_schist.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_bricks_from_schist.json new file mode 100644 index 00000000..a3bfd946 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_bricks_from_schist.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:schist" + }, + "result": { + "count": 1, + "id": "twigs:polished_schist_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_from_schist.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_from_schist.json new file mode 100644 index 00000000..b3d81b3d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_from_schist.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:schist" + }, + "result": { + "count": 1, + "id": "twigs:polished_schist" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_slab_from_polished_schist.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_slab_from_polished_schist.json new file mode 100644 index 00000000..71a2ecfd --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_slab_from_polished_schist.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_schist" + }, + "result": { + "count": 2, + "id": "twigs:polished_schist_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_slab_from_schist.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_slab_from_schist.json new file mode 100644 index 00000000..5735082b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_slab_from_schist.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:schist" + }, + "result": { + "count": 2, + "id": "twigs:polished_schist_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_stairs_from_polished_schist.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_stairs_from_polished_schist.json new file mode 100644 index 00000000..c83678cc --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_stairs_from_polished_schist.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_schist" + }, + "result": { + "count": 1, + "id": "twigs:polished_schist_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_stairs_from_schist.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_stairs_from_schist.json new file mode 100644 index 00000000..9dc649f3 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_schist_stairs_from_schist.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:schist" + }, + "result": { + "count": 1, + "id": "twigs:polished_schist_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_slab_from_polished_tuff.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_slab_from_polished_tuff.json new file mode 100644 index 00000000..eced42f9 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_slab_from_polished_tuff.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_tuff" + }, + "result": { + "count": 2, + "id": "twigs:polished_tuff_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_slab_from_polished_tuff_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_slab_from_polished_tuff_bricks.json new file mode 100644 index 00000000..3593575b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_slab_from_polished_tuff_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_tuff_bricks" + }, + "result": { + "count": 2, + "id": "twigs:polished_tuff_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_slab_from_tuff.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_slab_from_tuff.json new file mode 100644 index 00000000..a73d717e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_slab_from_tuff.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:tuff" + }, + "result": { + "count": 2, + "id": "twigs:polished_tuff_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_stairs_from_polished_tuff.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_stairs_from_polished_tuff.json new file mode 100644 index 00000000..8a171af6 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_stairs_from_polished_tuff.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_tuff" + }, + "result": { + "count": 1, + "id": "twigs:polished_tuff_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_stairs_from_polished_tuff_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_stairs_from_polished_tuff_bricks.json new file mode 100644 index 00000000..6a5a24bf --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_stairs_from_polished_tuff_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_tuff_bricks" + }, + "result": { + "count": 1, + "id": "twigs:polished_tuff_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_stairs_from_tuff.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_stairs_from_tuff.json new file mode 100644 index 00000000..9ffd8979 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_stairs_from_tuff.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:tuff" + }, + "result": { + "count": 1, + "id": "twigs:polished_tuff_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_wall_from_polished_tuff.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_wall_from_polished_tuff.json new file mode 100644 index 00000000..69bec451 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_wall_from_polished_tuff.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_tuff" + }, + "result": { + "count": 1, + "id": "twigs:polished_tuff_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_wall_from_polished_tuff_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_wall_from_polished_tuff_bricks.json new file mode 100644 index 00000000..e745b0a4 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_wall_from_polished_tuff_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_tuff_bricks" + }, + "result": { + "count": 1, + "id": "twigs:polished_tuff_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_wall_from_tuff.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_wall_from_tuff.json new file mode 100644 index 00000000..c99751d7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_brick_wall_from_tuff.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:tuff" + }, + "result": { + "count": 1, + "id": "twigs:polished_tuff_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_bricks_from_polished_tuff.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_bricks_from_polished_tuff.json new file mode 100644 index 00000000..532de078 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_bricks_from_polished_tuff.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_tuff" + }, + "result": { + "count": 1, + "id": "twigs:polished_tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_bricks_from_tuff.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_bricks_from_tuff.json new file mode 100644 index 00000000..5ab085eb --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_bricks_from_tuff.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:tuff" + }, + "result": { + "count": 1, + "id": "twigs:polished_tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_from_tuff.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_from_tuff.json new file mode 100644 index 00000000..4a3374bd --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_from_tuff.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:tuff" + }, + "result": { + "count": 1, + "id": "twigs:polished_tuff" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_slab_from_polished_tuff.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_slab_from_polished_tuff.json new file mode 100644 index 00000000..3c178c07 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_slab_from_polished_tuff.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_tuff" + }, + "result": { + "count": 2, + "id": "twigs:polished_tuff_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_slab_from_tuff.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_slab_from_tuff.json new file mode 100644 index 00000000..e0b51b9a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_slab_from_tuff.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:tuff" + }, + "result": { + "count": 2, + "id": "twigs:polished_tuff_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_stairs_from_polished_tuff.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_stairs_from_polished_tuff.json new file mode 100644 index 00000000..476dbf99 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_stairs_from_polished_tuff.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:polished_tuff" + }, + "result": { + "count": 1, + "id": "twigs:polished_tuff_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_stairs_from_tuff.json b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_stairs_from_tuff.json new file mode 100644 index 00000000..46af04fd --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/polished_tuff_stairs_from_tuff.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:tuff" + }, + "result": { + "count": 1, + "id": "twigs:polished_tuff_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_slab_from_purple_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_slab_from_purple_packed_silt.json new file mode 100644 index 00000000..23815d03 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_slab_from_purple_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:purple_packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:purple_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_slab_from_purple_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_slab_from_purple_silt_shingles.json new file mode 100644 index 00000000..115b2e67 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_slab_from_purple_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:purple_silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:purple_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_stairs_from_purple_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_stairs_from_purple_packed_silt.json new file mode 100644 index 00000000..2758be6f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_stairs_from_purple_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:purple_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:purple_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_stairs_from_purple_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_stairs_from_purple_silt_shingles.json new file mode 100644 index 00000000..0e86ba0e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_stairs_from_purple_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:purple_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:purple_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_wall_from_purple_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_wall_from_purple_packed_silt.json new file mode 100644 index 00000000..ea94434a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_wall_from_purple_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:purple_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:purple_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_wall_from_purple_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_wall_from_purple_silt_shingles.json new file mode 100644 index 00000000..11adfc1b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingle_wall_from_purple_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:purple_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:purple_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingles_from_purple_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingles_from_purple_packed_silt.json new file mode 100644 index 00000000..25b2cd46 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/purple_silt_shingles_from_purple_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:purple_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:purple_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/quartz_column_from_quartz_block.json b/src/main/generated/data/twigs/recipe/stonecutting/quartz_column_from_quartz_block.json new file mode 100644 index 00000000..0cd1e3b3 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/quartz_column_from_quartz_block.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:quartz_block" + }, + "result": { + "count": 1, + "id": "twigs:quartz_column" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_slab_from_red_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_slab_from_red_packed_silt.json new file mode 100644 index 00000000..e240ca0f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_slab_from_red_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:red_packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:red_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_slab_from_red_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_slab_from_red_silt_shingles.json new file mode 100644 index 00000000..834d7f06 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_slab_from_red_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:red_silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:red_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_stairs_from_red_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_stairs_from_red_packed_silt.json new file mode 100644 index 00000000..92d74639 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_stairs_from_red_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:red_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:red_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_stairs_from_red_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_stairs_from_red_silt_shingles.json new file mode 100644 index 00000000..8394dc86 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_stairs_from_red_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:red_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:red_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_wall_from_red_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_wall_from_red_packed_silt.json new file mode 100644 index 00000000..54cce782 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_wall_from_red_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:red_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:red_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_wall_from_red_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_wall_from_red_silt_shingles.json new file mode 100644 index 00000000..e0820f88 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingle_wall_from_red_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:red_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:red_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingles_from_red_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingles_from_red_packed_silt.json new file mode 100644 index 00000000..2a510eac --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/red_silt_shingles_from_red_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:red_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:red_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/rhyolite_slab_from_rhyolite.json b/src/main/generated/data/twigs/recipe/stonecutting/rhyolite_slab_from_rhyolite.json new file mode 100644 index 00000000..2833657a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/rhyolite_slab_from_rhyolite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:rhyolite" + }, + "result": { + "count": 2, + "id": "twigs:rhyolite_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/rhyolite_stairs_from_rhyolite.json b/src/main/generated/data/twigs/recipe/stonecutting/rhyolite_stairs_from_rhyolite.json new file mode 100644 index 00000000..66ed3220 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/rhyolite_stairs_from_rhyolite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:rhyolite" + }, + "result": { + "count": 1, + "id": "twigs:rhyolite_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/rhyolite_wall_from_rhyolite.json b/src/main/generated/data/twigs/recipe/stonecutting/rhyolite_wall_from_rhyolite.json new file mode 100644 index 00000000..bc4553dc --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/rhyolite_wall_from_rhyolite.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:rhyolite" + }, + "result": { + "count": 1, + "id": "twigs:rhyolite_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/schist_slab_from_schist.json b/src/main/generated/data/twigs/recipe/stonecutting/schist_slab_from_schist.json new file mode 100644 index 00000000..2f7df71c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/schist_slab_from_schist.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:schist" + }, + "result": { + "count": 2, + "id": "twigs:schist_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/schist_stairs_from_schist.json b/src/main/generated/data/twigs/recipe/stonecutting/schist_stairs_from_schist.json new file mode 100644 index 00000000..e6f19467 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/schist_stairs_from_schist.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:schist" + }, + "result": { + "count": 1, + "id": "twigs:schist_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/schist_wall_from_schist.json b/src/main/generated/data/twigs/recipe/stonecutting/schist_wall_from_schist.json new file mode 100644 index 00000000..b06c0647 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/schist_wall_from_schist.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:schist" + }, + "result": { + "count": 1, + "id": "twigs:schist_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/silt_brick_slab_from_silt_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/silt_brick_slab_from_silt_bricks.json new file mode 100644 index 00000000..943d56e7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/silt_brick_slab_from_silt_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:silt_bricks" + }, + "result": { + "count": 2, + "id": "twigs:silt_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/silt_brick_stairs_from_silt_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/silt_brick_stairs_from_silt_bricks.json new file mode 100644 index 00000000..8341c1fa --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/silt_brick_stairs_from_silt_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:silt_bricks" + }, + "result": { + "count": 1, + "id": "twigs:silt_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/silt_brick_trail_from_silt_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/silt_brick_trail_from_silt_bricks.json new file mode 100644 index 00000000..0ffe65dd --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/silt_brick_trail_from_silt_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:silt_bricks" + }, + "result": { + "count": 2, + "id": "twigs:silt_brick_trail" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/silt_brick_wall_from_silt_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/silt_brick_wall_from_silt_bricks.json new file mode 100644 index 00000000..9b5ff13c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/silt_brick_wall_from_silt_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:silt_bricks" + }, + "result": { + "count": 1, + "id": "twigs:silt_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_slab_from_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_slab_from_packed_silt.json new file mode 100644 index 00000000..c01bd666 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_slab_from_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_slab_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_slab_from_silt_shingles.json new file mode 100644 index 00000000..a6f3273a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_slab_from_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_stairs_from_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_stairs_from_packed_silt.json new file mode 100644 index 00000000..f667edc2 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_stairs_from_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_stairs_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_stairs_from_silt_shingles.json new file mode 100644 index 00000000..91e42d95 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_stairs_from_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_wall_from_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_wall_from_packed_silt.json new file mode 100644 index 00000000..0c85c3b6 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_wall_from_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_wall_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_wall_from_silt_shingles.json new file mode 100644 index 00000000..5bce9155 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/silt_shingle_wall_from_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/silt_shingles_from_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/silt_shingles_from_packed_silt.json new file mode 100644 index 00000000..852eb21b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/silt_shingles_from_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_slab_from_smooth_basalt.json b/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_slab_from_smooth_basalt.json new file mode 100644 index 00000000..2a526886 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_slab_from_smooth_basalt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:smooth_basalt" + }, + "result": { + "count": 2, + "id": "twigs:smooth_basalt_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_slab_from_smooth_basalt_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_slab_from_smooth_basalt_bricks.json new file mode 100644 index 00000000..68597cad --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_slab_from_smooth_basalt_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:smooth_basalt_bricks" + }, + "result": { + "count": 2, + "id": "twigs:smooth_basalt_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_stairs_from_smooth_basalt.json b/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_stairs_from_smooth_basalt.json new file mode 100644 index 00000000..7f1b0b89 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_stairs_from_smooth_basalt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:smooth_basalt" + }, + "result": { + "count": 1, + "id": "twigs:smooth_basalt_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_stairs_from_smooth_basalt_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_stairs_from_smooth_basalt_bricks.json new file mode 100644 index 00000000..dea083f6 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_stairs_from_smooth_basalt_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:smooth_basalt_bricks" + }, + "result": { + "count": 1, + "id": "twigs:smooth_basalt_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_wall_from_smooth_basalt.json b/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_wall_from_smooth_basalt.json new file mode 100644 index 00000000..fc78b9cf --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_wall_from_smooth_basalt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:smooth_basalt" + }, + "result": { + "count": 1, + "id": "twigs:smooth_basalt_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_wall_from_smooth_basalt_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_wall_from_smooth_basalt_bricks.json new file mode 100644 index 00000000..87ef045f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_brick_wall_from_smooth_basalt_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:smooth_basalt_bricks" + }, + "result": { + "count": 1, + "id": "twigs:smooth_basalt_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_bricks_from_smooth_basalt.json b/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_bricks_from_smooth_basalt.json new file mode 100644 index 00000000..c3581637 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/smooth_basalt_bricks_from_smooth_basalt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:smooth_basalt" + }, + "result": { + "count": 1, + "id": "twigs:smooth_basalt_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_slab_from_smooth_stone.json b/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_slab_from_smooth_stone.json new file mode 100644 index 00000000..bf3cc218 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_slab_from_smooth_stone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:smooth_stone" + }, + "result": { + "count": 2, + "id": "twigs:smooth_stone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_slab_from_smooth_stone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_slab_from_smooth_stone_bricks.json new file mode 100644 index 00000000..c6e3fc7d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_slab_from_smooth_stone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:smooth_stone_bricks" + }, + "result": { + "count": 2, + "id": "twigs:smooth_stone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_stairs_from_smooth_stone.json b/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_stairs_from_smooth_stone.json new file mode 100644 index 00000000..0588b573 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_stairs_from_smooth_stone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:smooth_stone" + }, + "result": { + "count": 1, + "id": "twigs:smooth_stone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_stairs_from_smooth_stone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_stairs_from_smooth_stone_bricks.json new file mode 100644 index 00000000..f847f44f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_stairs_from_smooth_stone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:smooth_stone_bricks" + }, + "result": { + "count": 1, + "id": "twigs:smooth_stone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_wall_from_smooth_stone.json b/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_wall_from_smooth_stone.json new file mode 100644 index 00000000..6417cfe0 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_wall_from_smooth_stone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:smooth_stone" + }, + "result": { + "count": 1, + "id": "twigs:smooth_stone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_wall_from_smooth_stone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_wall_from_smooth_stone_bricks.json new file mode 100644 index 00000000..3e32d401 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_brick_wall_from_smooth_stone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:smooth_stone_bricks" + }, + "result": { + "count": 1, + "id": "twigs:smooth_stone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_bricks_from_smooth_stone.json b/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_bricks_from_smooth_stone.json new file mode 100644 index 00000000..18410584 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/smooth_stone_bricks_from_smooth_stone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:smooth_stone" + }, + "result": { + "count": 1, + "id": "twigs:smooth_stone_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/stone_column_from_stone.json b/src/main/generated/data/twigs/recipe/stonecutting/stone_column_from_stone.json new file mode 100644 index 00000000..a794cb96 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/stone_column_from_stone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:stone" + }, + "result": { + "count": 1, + "id": "twigs:stone_column" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/twisting_polished_blackstone_brick_slab_from_twisting_polished_blackstone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/twisting_polished_blackstone_brick_slab_from_twisting_polished_blackstone_bricks.json new file mode 100644 index 00000000..ace4536c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/twisting_polished_blackstone_brick_slab_from_twisting_polished_blackstone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:twisting_polished_blackstone_bricks" + }, + "result": { + "count": 2, + "id": "twigs:twisting_polished_blackstone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/twisting_polished_blackstone_brick_stairs_from_twisting_polished_blackstone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/twisting_polished_blackstone_brick_stairs_from_twisting_polished_blackstone_bricks.json new file mode 100644 index 00000000..85b8cfe5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/twisting_polished_blackstone_brick_stairs_from_twisting_polished_blackstone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:twisting_polished_blackstone_bricks" + }, + "result": { + "count": 1, + "id": "twigs:twisting_polished_blackstone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/twisting_polished_blackstone_brick_wall_from_twisting_polished_blackstone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/twisting_polished_blackstone_brick_wall_from_twisting_polished_blackstone_bricks.json new file mode 100644 index 00000000..6fc44d88 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/twisting_polished_blackstone_brick_wall_from_twisting_polished_blackstone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:twisting_polished_blackstone_bricks" + }, + "result": { + "count": 1, + "id": "twigs:twisting_polished_blackstone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/waxed_copper_pillar_from_waxed_copper_block.json b/src/main/generated/data/twigs/recipe/stonecutting/waxed_copper_pillar_from_waxed_copper_block.json new file mode 100644 index 00000000..52192221 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/waxed_copper_pillar_from_waxed_copper_block.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:waxed_copper_block" + }, + "result": { + "count": 4, + "id": "twigs:waxed_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/waxed_copper_pillar_from_waxed_cut_copper_slab.json b/src/main/generated/data/twigs/recipe/stonecutting/waxed_copper_pillar_from_waxed_cut_copper_slab.json new file mode 100644 index 00000000..aee4d1b7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/waxed_copper_pillar_from_waxed_cut_copper_slab.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:waxed_cut_copper_slab" + }, + "result": { + "count": 1, + "id": "twigs:waxed_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/waxed_exposed_copper_pillar_from_waxed_exposed_copper.json b/src/main/generated/data/twigs/recipe/stonecutting/waxed_exposed_copper_pillar_from_waxed_exposed_copper.json new file mode 100644 index 00000000..ea00d2dd --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/waxed_exposed_copper_pillar_from_waxed_exposed_copper.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:waxed_exposed_copper" + }, + "result": { + "count": 4, + "id": "twigs:waxed_exposed_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/waxed_exposed_copper_pillar_from_waxed_exposed_cut_copper_slab.json b/src/main/generated/data/twigs/recipe/stonecutting/waxed_exposed_copper_pillar_from_waxed_exposed_cut_copper_slab.json new file mode 100644 index 00000000..4583eb32 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/waxed_exposed_copper_pillar_from_waxed_exposed_cut_copper_slab.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:waxed_exposed_cut_copper_slab" + }, + "result": { + "count": 1, + "id": "twigs:waxed_exposed_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/waxed_oxidized_copper_pillar_from_waxed_oxidized_copper.json b/src/main/generated/data/twigs/recipe/stonecutting/waxed_oxidized_copper_pillar_from_waxed_oxidized_copper.json new file mode 100644 index 00000000..18c005ef --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/waxed_oxidized_copper_pillar_from_waxed_oxidized_copper.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:waxed_oxidized_copper" + }, + "result": { + "count": 4, + "id": "twigs:waxed_oxidized_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/waxed_oxidized_copper_pillar_from_waxed_oxidized_cut_copper_slab.json b/src/main/generated/data/twigs/recipe/stonecutting/waxed_oxidized_copper_pillar_from_waxed_oxidized_cut_copper_slab.json new file mode 100644 index 00000000..0cf0a2a7 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/waxed_oxidized_copper_pillar_from_waxed_oxidized_cut_copper_slab.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:waxed_oxidized_cut_copper_slab" + }, + "result": { + "count": 1, + "id": "twigs:waxed_oxidized_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/waxed_weathered_copper_pillar_from_waxed_weathered_copper.json b/src/main/generated/data/twigs/recipe/stonecutting/waxed_weathered_copper_pillar_from_waxed_weathered_copper.json new file mode 100644 index 00000000..6bb4a361 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/waxed_weathered_copper_pillar_from_waxed_weathered_copper.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:waxed_weathered_copper" + }, + "result": { + "count": 4, + "id": "twigs:waxed_weathered_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/waxed_weathered_copper_pillar_from_waxed_weathered_cut_copper_slab.json b/src/main/generated/data/twigs/recipe/stonecutting/waxed_weathered_copper_pillar_from_waxed_weathered_cut_copper_slab.json new file mode 100644 index 00000000..7a9926d1 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/waxed_weathered_copper_pillar_from_waxed_weathered_cut_copper_slab.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:waxed_weathered_cut_copper_slab" + }, + "result": { + "count": 1, + "id": "twigs:waxed_weathered_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/weathered_copper_pillar_from_weathered_copper.json b/src/main/generated/data/twigs/recipe/stonecutting/weathered_copper_pillar_from_weathered_copper.json new file mode 100644 index 00000000..8245150e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/weathered_copper_pillar_from_weathered_copper.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:weathered_copper" + }, + "result": { + "count": 4, + "id": "twigs:weathered_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/weathered_copper_pillar_from_weathered_cut_copper_slab.json b/src/main/generated/data/twigs/recipe/stonecutting/weathered_copper_pillar_from_weathered_cut_copper_slab.json new file mode 100644 index 00000000..ba2b588a --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/weathered_copper_pillar_from_weathered_cut_copper_slab.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "minecraft:weathered_cut_copper_slab" + }, + "result": { + "count": 1, + "id": "twigs:weathered_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/weeping_polished_blackstone_brick_slab_from_weeping_polished_blackstone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/weeping_polished_blackstone_brick_slab_from_weeping_polished_blackstone_bricks.json new file mode 100644 index 00000000..5bba06fb --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/weeping_polished_blackstone_brick_slab_from_weeping_polished_blackstone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:weeping_polished_blackstone_bricks" + }, + "result": { + "count": 2, + "id": "twigs:weeping_polished_blackstone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/weeping_polished_blackstone_brick_stairs_from_weeping_polished_blackstone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/weeping_polished_blackstone_brick_stairs_from_weeping_polished_blackstone_bricks.json new file mode 100644 index 00000000..42753acc --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/weeping_polished_blackstone_brick_stairs_from_weeping_polished_blackstone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:weeping_polished_blackstone_bricks" + }, + "result": { + "count": 1, + "id": "twigs:weeping_polished_blackstone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/weeping_polished_blackstone_brick_wall_from_weeping_polished_blackstone_bricks.json b/src/main/generated/data/twigs/recipe/stonecutting/weeping_polished_blackstone_brick_wall_from_weeping_polished_blackstone_bricks.json new file mode 100644 index 00000000..4bc9ca9d --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/weeping_polished_blackstone_brick_wall_from_weeping_polished_blackstone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:weeping_polished_blackstone_bricks" + }, + "result": { + "count": 1, + "id": "twigs:weeping_polished_blackstone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_slab_from_white_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_slab_from_white_packed_silt.json new file mode 100644 index 00000000..054b82be --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_slab_from_white_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:white_packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:white_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_slab_from_white_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_slab_from_white_silt_shingles.json new file mode 100644 index 00000000..470f8d92 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_slab_from_white_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:white_silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:white_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_stairs_from_white_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_stairs_from_white_packed_silt.json new file mode 100644 index 00000000..a9c3dea9 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_stairs_from_white_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:white_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:white_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_stairs_from_white_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_stairs_from_white_silt_shingles.json new file mode 100644 index 00000000..095c2192 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_stairs_from_white_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:white_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:white_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_wall_from_white_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_wall_from_white_packed_silt.json new file mode 100644 index 00000000..02140118 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_wall_from_white_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:white_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:white_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_wall_from_white_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_wall_from_white_silt_shingles.json new file mode 100644 index 00000000..82678f25 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingle_wall_from_white_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:white_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:white_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingles_from_white_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingles_from_white_packed_silt.json new file mode 100644 index 00000000..c8813e57 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/white_silt_shingles_from_white_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:white_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:white_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_slab_from_yellow_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_slab_from_yellow_packed_silt.json new file mode 100644 index 00000000..b282ec77 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_slab_from_yellow_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:yellow_packed_silt" + }, + "result": { + "count": 2, + "id": "twigs:yellow_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_slab_from_yellow_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_slab_from_yellow_silt_shingles.json new file mode 100644 index 00000000..d10e5168 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_slab_from_yellow_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:yellow_silt_shingles" + }, + "result": { + "count": 2, + "id": "twigs:yellow_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_stairs_from_yellow_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_stairs_from_yellow_packed_silt.json new file mode 100644 index 00000000..3bdc025c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_stairs_from_yellow_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:yellow_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:yellow_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_stairs_from_yellow_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_stairs_from_yellow_silt_shingles.json new file mode 100644 index 00000000..4e3522db --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_stairs_from_yellow_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:yellow_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:yellow_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_wall_from_yellow_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_wall_from_yellow_packed_silt.json new file mode 100644 index 00000000..7113b436 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_wall_from_yellow_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:yellow_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:yellow_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_wall_from_yellow_silt_shingles.json b/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_wall_from_yellow_silt_shingles.json new file mode 100644 index 00000000..30332d99 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingle_wall_from_yellow_silt_shingles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:yellow_silt_shingles" + }, + "result": { + "count": 1, + "id": "twigs:yellow_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingles_from_yellow_packed_silt.json b/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingles_from_yellow_packed_silt.json new file mode 100644 index 00000000..b3ef5d6f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/stonecutting/yellow_silt_shingles_from_yellow_packed_silt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "twigs:yellow_packed_silt" + }, + "result": { + "count": 1, + "id": "twigs:yellow_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/torchflower_paper_lantern.json b/src/main/generated/data/twigs/recipe/torchflower_paper_lantern.json new file mode 100644 index 00000000..0c50dbf3 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/torchflower_paper_lantern.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:paper_lantern" + }, + { + "item": "minecraft:torchflower" + } + ], + "result": { + "count": 1, + "id": "twigs:torchflower_paper_lantern" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/twig_to_stick.json b/src/main/generated/data/twigs/recipe/twig_to_stick.json new file mode 100644 index 00000000..05362dfc --- /dev/null +++ b/src/main/generated/data/twigs/recipe/twig_to_stick.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:twig" + } + ], + "result": { + "count": 2, + "id": "minecraft:stick" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/twisting_polished_blackstone_brick_slab.json b/src/main/generated/data/twigs/recipe/twisting_polished_blackstone_brick_slab.json new file mode 100644 index 00000000..55b651c8 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/twisting_polished_blackstone_brick_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:twisting_polished_blackstone_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:twisting_polished_blackstone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/twisting_polished_blackstone_brick_stairs.json b/src/main/generated/data/twigs/recipe/twisting_polished_blackstone_brick_stairs.json new file mode 100644 index 00000000..b2ea0a1e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/twisting_polished_blackstone_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:twisting_polished_blackstone_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:twisting_polished_blackstone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/twisting_polished_blackstone_brick_wall.json b/src/main/generated/data/twigs/recipe/twisting_polished_blackstone_brick_wall.json new file mode 100644 index 00000000..9974b2cf --- /dev/null +++ b/src/main/generated/data/twigs/recipe/twisting_polished_blackstone_brick_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:twisting_polished_blackstone_bricks" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:twisting_polished_blackstone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/twisting_polished_blackstone_bricks.json b/src/main/generated/data/twigs/recipe/twisting_polished_blackstone_bricks.json new file mode 100644 index 00000000..28c68d56 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/twisting_polished_blackstone_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:polished_blackstone_bricks" + }, + "T": { + "item": "minecraft:twisting_vines" + } + }, + "pattern": [ + "###", + "#T#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:twisting_polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/warped_shroomlamp.json b/src/main/generated/data/twigs/recipe/warped_shroomlamp.json new file mode 100644 index 00000000..d4c80a26 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/warped_shroomlamp.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:warped_planks" + }, + "S": { + "item": "minecraft:shroomlight" + } + }, + "pattern": [ + "###", + "SSS", + "###" + ], + "result": { + "count": 1, + "id": "twigs:warped_shroomlamp" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/warped_table.json b/src/main/generated/data/twigs/recipe/warped_table.json new file mode 100644 index 00000000..235ebeee --- /dev/null +++ b/src/main/generated/data/twigs/recipe/warped_table.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "O": { + "item": "minecraft:warped_fence" + }, + "_": { + "item": "minecraft:warped_slab" + } + }, + "pattern": [ + "___", + "O O", + "O O" + ], + "result": { + "count": 1, + "id": "twigs:warped_table" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/waxed_copper_pillar.json b/src/main/generated/data/twigs/recipe/waxed_copper_pillar.json new file mode 100644 index 00000000..2b94beda --- /dev/null +++ b/src/main/generated/data/twigs/recipe/waxed_copper_pillar.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:waxed_cut_copper" + } + }, + "pattern": [ + "#", + "#" + ], + "result": { + "count": 1, + "id": "twigs:waxed_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/waxed_exposed_copper_pillar.json b/src/main/generated/data/twigs/recipe/waxed_exposed_copper_pillar.json new file mode 100644 index 00000000..273bc6d5 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/waxed_exposed_copper_pillar.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:waxed_exposed_cut_copper" + } + }, + "pattern": [ + "#", + "#" + ], + "result": { + "count": 1, + "id": "twigs:waxed_exposed_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/waxed_oxidized_copper_pillar.json b/src/main/generated/data/twigs/recipe/waxed_oxidized_copper_pillar.json new file mode 100644 index 00000000..02603628 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/waxed_oxidized_copper_pillar.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:waxed_oxidized_cut_copper" + } + }, + "pattern": [ + "#", + "#" + ], + "result": { + "count": 1, + "id": "twigs:waxed_oxidized_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/waxed_weathered_copper_pillar.json b/src/main/generated/data/twigs/recipe/waxed_weathered_copper_pillar.json new file mode 100644 index 00000000..d615b86b --- /dev/null +++ b/src/main/generated/data/twigs/recipe/waxed_weathered_copper_pillar.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:waxed_weathered_cut_copper" + } + }, + "pattern": [ + "#", + "#" + ], + "result": { + "count": 1, + "id": "twigs:waxed_weathered_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/weathered_copper_pillar.json b/src/main/generated/data/twigs/recipe/weathered_copper_pillar.json new file mode 100644 index 00000000..4f41e1f8 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/weathered_copper_pillar.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:weathered_cut_copper" + } + }, + "pattern": [ + "#", + "#" + ], + "result": { + "count": 1, + "id": "twigs:weathered_copper_pillar" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/weeping_polished_blackstone_brick_slab.json b/src/main/generated/data/twigs/recipe/weeping_polished_blackstone_brick_slab.json new file mode 100644 index 00000000..b8ce55df --- /dev/null +++ b/src/main/generated/data/twigs/recipe/weeping_polished_blackstone_brick_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:weeping_polished_blackstone_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:weeping_polished_blackstone_brick_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/weeping_polished_blackstone_brick_stairs.json b/src/main/generated/data/twigs/recipe/weeping_polished_blackstone_brick_stairs.json new file mode 100644 index 00000000..e8213653 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/weeping_polished_blackstone_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:weeping_polished_blackstone_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:weeping_polished_blackstone_brick_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/weeping_polished_blackstone_brick_wall.json b/src/main/generated/data/twigs/recipe/weeping_polished_blackstone_brick_wall.json new file mode 100644 index 00000000..a9375f9f --- /dev/null +++ b/src/main/generated/data/twigs/recipe/weeping_polished_blackstone_brick_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:weeping_polished_blackstone_bricks" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:weeping_polished_blackstone_brick_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/weeping_polished_blackstone_bricks.json b/src/main/generated/data/twigs/recipe/weeping_polished_blackstone_bricks.json new file mode 100644 index 00000000..bd5370da --- /dev/null +++ b/src/main/generated/data/twigs/recipe/weeping_polished_blackstone_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "minecraft:polished_blackstone_bricks" + }, + "W": { + "item": "minecraft:weeping_vines" + } + }, + "pattern": [ + "###", + "#W#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:weeping_polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/white_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/recipe/white_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..f1589606 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/white_packed_silt_from_packed_silt.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "packed_silt", + "key": { + "#": { + "item": "twigs:packed_silt" + }, + "X": { + "item": "minecraft:white_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:white_packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/white_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/white_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..e216b9d2 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/white_packed_silt_from_silt_shingles.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "silt_shingles", + "key": { + "#": { + "item": "twigs:silt_shingles" + }, + "X": { + "item": "minecraft:white_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:white_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/white_silt_pot.json b/src/main/generated/data/twigs/recipe/white_silt_pot.json new file mode 100644 index 00000000..56f6c085 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/white_silt_pot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt_pot" + }, + { + "item": "minecraft:white_dye" + } + ], + "result": { + "count": 1, + "id": "twigs:white_silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/white_silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/white_silt_shingle_slab.json new file mode 100644 index 00000000..da722b94 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/white_silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:white_silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:white_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/white_silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/white_silt_shingle_stairs.json new file mode 100644 index 00000000..6765abc2 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/white_silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:white_silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:white_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/white_silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/white_silt_shingle_wall.json new file mode 100644 index 00000000..9552d091 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/white_silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:white_silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:white_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/white_silt_shingles.json b/src/main/generated/data/twigs/recipe/white_silt_shingles.json new file mode 100644 index 00000000..1edbfede --- /dev/null +++ b/src/main/generated/data/twigs/recipe/white_silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:white_packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:white_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/yellow_packed_silt_from_packed_silt.json b/src/main/generated/data/twigs/recipe/yellow_packed_silt_from_packed_silt.json new file mode 100644 index 00000000..7d3931e1 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/yellow_packed_silt_from_packed_silt.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "packed_silt", + "key": { + "#": { + "item": "twigs:packed_silt" + }, + "X": { + "item": "minecraft:yellow_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:yellow_packed_silt" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/yellow_packed_silt_from_silt_shingles.json b/src/main/generated/data/twigs/recipe/yellow_packed_silt_from_silt_shingles.json new file mode 100644 index 00000000..005528e4 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/yellow_packed_silt_from_silt_shingles.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "silt_shingles", + "key": { + "#": { + "item": "twigs:silt_shingles" + }, + "X": { + "item": "minecraft:yellow_dye" + } + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "twigs:yellow_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/yellow_silt_pot.json b/src/main/generated/data/twigs/recipe/yellow_silt_pot.json new file mode 100644 index 00000000..692a09ee --- /dev/null +++ b/src/main/generated/data/twigs/recipe/yellow_silt_pot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + { + "item": "twigs:silt_pot" + }, + { + "item": "minecraft:yellow_dye" + } + ], + "result": { + "count": 1, + "id": "twigs:yellow_silt_pot" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/yellow_silt_shingle_slab.json b/src/main/generated/data/twigs/recipe/yellow_silt_shingle_slab.json new file mode 100644 index 00000000..e58b698e --- /dev/null +++ b/src/main/generated/data/twigs/recipe/yellow_silt_shingle_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:yellow_silt_shingles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "twigs:yellow_silt_shingle_slab" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/yellow_silt_shingle_stairs.json b/src/main/generated/data/twigs/recipe/yellow_silt_shingle_stairs.json new file mode 100644 index 00000000..d9155279 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/yellow_silt_shingle_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:yellow_silt_shingles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "twigs:yellow_silt_shingle_stairs" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/yellow_silt_shingle_wall.json b/src/main/generated/data/twigs/recipe/yellow_silt_shingle_wall.json new file mode 100644 index 00000000..48fa467c --- /dev/null +++ b/src/main/generated/data/twigs/recipe/yellow_silt_shingle_wall.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:yellow_silt_shingles" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "twigs:yellow_silt_shingle_wall" + } +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/recipe/yellow_silt_shingles.json b/src/main/generated/data/twigs/recipe/yellow_silt_shingles.json new file mode 100644 index 00000000..b89ed7b3 --- /dev/null +++ b/src/main/generated/data/twigs/recipe/yellow_silt_shingles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "twigs:yellow_packed_silt" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "twigs:yellow_silt_shingles" + } +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/tags/blocks/bloodstone.json b/src/main/generated/data/twigs/tags/block/bloodstone.json similarity index 100% rename from src/main/resources/data/twigs/tags/blocks/bloodstone.json rename to src/main/generated/data/twigs/tags/block/bloodstone.json diff --git a/src/main/generated/data/twigs/tags/block/offset_remover.json b/src/main/generated/data/twigs/tags/block/offset_remover.json new file mode 100644 index 00000000..dba08c87 --- /dev/null +++ b/src/main/generated/data/twigs/tags/block/offset_remover.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#twigs:silt_pots" + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/tags/block/packed_silt.json b/src/main/generated/data/twigs/tags/block/packed_silt.json new file mode 100644 index 00000000..65f47bdf --- /dev/null +++ b/src/main/generated/data/twigs/tags/block/packed_silt.json @@ -0,0 +1,89 @@ +{ + "values": [ + "twigs:packed_silt", + "twigs:white_packed_silt", + "twigs:orange_packed_silt", + "twigs:magenta_packed_silt", + "twigs:light_blue_packed_silt", + "twigs:yellow_packed_silt", + "twigs:lime_packed_silt", + "twigs:pink_packed_silt", + "twigs:gray_packed_silt", + "twigs:light_gray_packed_silt", + "twigs:cyan_packed_silt", + "twigs:purple_packed_silt", + "twigs:blue_packed_silt", + "twigs:brown_packed_silt", + "twigs:green_packed_silt", + "twigs:red_packed_silt", + "twigs:black_packed_silt", + "twigs:silt_shingles", + "twigs:white_silt_shingles", + "twigs:orange_silt_shingles", + "twigs:magenta_silt_shingles", + "twigs:light_blue_silt_shingles", + "twigs:yellow_silt_shingles", + "twigs:lime_silt_shingles", + "twigs:pink_silt_shingles", + "twigs:gray_silt_shingles", + "twigs:light_gray_silt_shingles", + "twigs:cyan_silt_shingles", + "twigs:purple_silt_shingles", + "twigs:blue_silt_shingles", + "twigs:brown_silt_shingles", + "twigs:green_silt_shingles", + "twigs:red_silt_shingles", + "twigs:black_silt_shingles", + "twigs:silt_shingle_stairs", + "twigs:white_silt_shingle_stairs", + "twigs:orange_silt_shingle_stairs", + "twigs:magenta_silt_shingle_stairs", + "twigs:light_blue_silt_shingle_stairs", + "twigs:yellow_silt_shingle_stairs", + "twigs:lime_silt_shingle_stairs", + "twigs:pink_silt_shingle_stairs", + "twigs:gray_silt_shingle_stairs", + "twigs:light_gray_silt_shingle_stairs", + "twigs:cyan_silt_shingle_stairs", + "twigs:purple_silt_shingle_stairs", + "twigs:blue_silt_shingle_stairs", + "twigs:brown_silt_shingle_stairs", + "twigs:green_silt_shingle_stairs", + "twigs:red_silt_shingle_stairs", + "twigs:black_silt_shingle_stairs", + "twigs:silt_shingle_slab", + "twigs:white_silt_shingle_slab", + "twigs:orange_silt_shingle_slab", + "twigs:magenta_silt_shingle_slab", + "twigs:light_blue_silt_shingle_slab", + "twigs:yellow_silt_shingle_slab", + "twigs:lime_silt_shingle_slab", + "twigs:pink_silt_shingle_slab", + "twigs:gray_silt_shingle_slab", + "twigs:light_gray_silt_shingle_slab", + "twigs:cyan_silt_shingle_slab", + "twigs:purple_silt_shingle_slab", + "twigs:blue_silt_shingle_slab", + "twigs:brown_silt_shingle_slab", + "twigs:green_silt_shingle_slab", + "twigs:red_silt_shingle_slab", + "twigs:black_silt_shingle_slab", + "twigs:silt_shingle_wall", + "twigs:white_silt_shingle_wall", + "twigs:orange_silt_shingle_wall", + "twigs:magenta_silt_shingle_wall", + "twigs:light_blue_silt_shingle_wall", + "twigs:yellow_silt_shingle_wall", + "twigs:lime_silt_shingle_wall", + "twigs:pink_silt_shingle_wall", + "twigs:gray_silt_shingle_wall", + "twigs:light_gray_silt_shingle_wall", + "twigs:cyan_silt_shingle_wall", + "twigs:purple_silt_shingle_wall", + "twigs:blue_silt_shingle_wall", + "twigs:brown_silt_shingle_wall", + "twigs:green_silt_shingle_wall", + "twigs:red_silt_shingle_wall", + "twigs:black_silt_shingle_wall" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/tags/blocks/rhyolite.json b/src/main/generated/data/twigs/tags/block/rhyolite.json similarity index 100% rename from src/main/resources/data/twigs/tags/blocks/rhyolite.json rename to src/main/generated/data/twigs/tags/block/rhyolite.json diff --git a/src/main/resources/data/twigs/tags/blocks/schist.json b/src/main/generated/data/twigs/tags/block/schist.json similarity index 100% rename from src/main/resources/data/twigs/tags/blocks/schist.json rename to src/main/generated/data/twigs/tags/block/schist.json diff --git a/src/main/generated/data/twigs/tags/block/silt_pots.json b/src/main/generated/data/twigs/tags/block/silt_pots.json new file mode 100644 index 00000000..f14badfe --- /dev/null +++ b/src/main/generated/data/twigs/tags/block/silt_pots.json @@ -0,0 +1,21 @@ +{ + "values": [ + "twigs:silt_pot", + "twigs:white_silt_pot", + "twigs:orange_silt_pot", + "twigs:magenta_silt_pot", + "twigs:light_blue_silt_pot", + "twigs:yellow_silt_pot", + "twigs:lime_silt_pot", + "twigs:pink_silt_pot", + "twigs:gray_silt_pot", + "twigs:light_gray_silt_pot", + "twigs:cyan_silt_pot", + "twigs:purple_silt_pot", + "twigs:blue_silt_pot", + "twigs:brown_silt_pot", + "twigs:green_silt_pot", + "twigs:red_silt_pot", + "twigs:black_silt_pot" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/tags/blocks/tables.json b/src/main/generated/data/twigs/tags/block/tables.json similarity index 100% rename from src/main/resources/data/twigs/tags/blocks/tables.json rename to src/main/generated/data/twigs/tags/block/tables.json diff --git a/src/main/resources/data/twigs/tags/entity_types/bamboo_leaves_slow_immune.json b/src/main/generated/data/twigs/tags/entity_type/bamboo_leaves_slow_immune.json similarity index 84% rename from src/main/resources/data/twigs/tags/entity_types/bamboo_leaves_slow_immune.json rename to src/main/generated/data/twigs/tags/entity_type/bamboo_leaves_slow_immune.json index 27d42ab4..9c04438f 100644 --- a/src/main/resources/data/twigs/tags/entity_types/bamboo_leaves_slow_immune.json +++ b/src/main/generated/data/twigs/tags/entity_type/bamboo_leaves_slow_immune.json @@ -1,5 +1,4 @@ { - "replace": false, "values": [ "minecraft:panda", "minecraft:bee", diff --git a/src/main/resources/data/twigs/tags/items/bloodstone.json b/src/main/generated/data/twigs/tags/item/bloodstone.json similarity index 100% rename from src/main/resources/data/twigs/tags/items/bloodstone.json rename to src/main/generated/data/twigs/tags/item/bloodstone.json diff --git a/src/main/generated/data/twigs/tags/item/packed_silt.json b/src/main/generated/data/twigs/tags/item/packed_silt.json new file mode 100644 index 00000000..65f47bdf --- /dev/null +++ b/src/main/generated/data/twigs/tags/item/packed_silt.json @@ -0,0 +1,89 @@ +{ + "values": [ + "twigs:packed_silt", + "twigs:white_packed_silt", + "twigs:orange_packed_silt", + "twigs:magenta_packed_silt", + "twigs:light_blue_packed_silt", + "twigs:yellow_packed_silt", + "twigs:lime_packed_silt", + "twigs:pink_packed_silt", + "twigs:gray_packed_silt", + "twigs:light_gray_packed_silt", + "twigs:cyan_packed_silt", + "twigs:purple_packed_silt", + "twigs:blue_packed_silt", + "twigs:brown_packed_silt", + "twigs:green_packed_silt", + "twigs:red_packed_silt", + "twigs:black_packed_silt", + "twigs:silt_shingles", + "twigs:white_silt_shingles", + "twigs:orange_silt_shingles", + "twigs:magenta_silt_shingles", + "twigs:light_blue_silt_shingles", + "twigs:yellow_silt_shingles", + "twigs:lime_silt_shingles", + "twigs:pink_silt_shingles", + "twigs:gray_silt_shingles", + "twigs:light_gray_silt_shingles", + "twigs:cyan_silt_shingles", + "twigs:purple_silt_shingles", + "twigs:blue_silt_shingles", + "twigs:brown_silt_shingles", + "twigs:green_silt_shingles", + "twigs:red_silt_shingles", + "twigs:black_silt_shingles", + "twigs:silt_shingle_stairs", + "twigs:white_silt_shingle_stairs", + "twigs:orange_silt_shingle_stairs", + "twigs:magenta_silt_shingle_stairs", + "twigs:light_blue_silt_shingle_stairs", + "twigs:yellow_silt_shingle_stairs", + "twigs:lime_silt_shingle_stairs", + "twigs:pink_silt_shingle_stairs", + "twigs:gray_silt_shingle_stairs", + "twigs:light_gray_silt_shingle_stairs", + "twigs:cyan_silt_shingle_stairs", + "twigs:purple_silt_shingle_stairs", + "twigs:blue_silt_shingle_stairs", + "twigs:brown_silt_shingle_stairs", + "twigs:green_silt_shingle_stairs", + "twigs:red_silt_shingle_stairs", + "twigs:black_silt_shingle_stairs", + "twigs:silt_shingle_slab", + "twigs:white_silt_shingle_slab", + "twigs:orange_silt_shingle_slab", + "twigs:magenta_silt_shingle_slab", + "twigs:light_blue_silt_shingle_slab", + "twigs:yellow_silt_shingle_slab", + "twigs:lime_silt_shingle_slab", + "twigs:pink_silt_shingle_slab", + "twigs:gray_silt_shingle_slab", + "twigs:light_gray_silt_shingle_slab", + "twigs:cyan_silt_shingle_slab", + "twigs:purple_silt_shingle_slab", + "twigs:blue_silt_shingle_slab", + "twigs:brown_silt_shingle_slab", + "twigs:green_silt_shingle_slab", + "twigs:red_silt_shingle_slab", + "twigs:black_silt_shingle_slab", + "twigs:silt_shingle_wall", + "twigs:white_silt_shingle_wall", + "twigs:orange_silt_shingle_wall", + "twigs:magenta_silt_shingle_wall", + "twigs:light_blue_silt_shingle_wall", + "twigs:yellow_silt_shingle_wall", + "twigs:lime_silt_shingle_wall", + "twigs:pink_silt_shingle_wall", + "twigs:gray_silt_shingle_wall", + "twigs:light_gray_silt_shingle_wall", + "twigs:cyan_silt_shingle_wall", + "twigs:purple_silt_shingle_wall", + "twigs:blue_silt_shingle_wall", + "twigs:brown_silt_shingle_wall", + "twigs:green_silt_shingle_wall", + "twigs:red_silt_shingle_wall", + "twigs:black_silt_shingle_wall" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/tags/items/packed_silt_full_blocks.json b/src/main/generated/data/twigs/tags/item/packed_silt_full_blocks.json similarity index 96% rename from src/main/resources/data/twigs/tags/items/packed_silt_full_blocks.json rename to src/main/generated/data/twigs/tags/item/packed_silt_full_blocks.json index 3bb19ca5..a8e8c7b8 100644 --- a/src/main/resources/data/twigs/tags/items/packed_silt_full_blocks.json +++ b/src/main/generated/data/twigs/tags/item/packed_silt_full_blocks.json @@ -1,5 +1,4 @@ { - "replace": false, "values": [ "twigs:packed_silt", "twigs:white_packed_silt", diff --git a/src/main/resources/data/twigs/tags/items/rhyolite.json b/src/main/generated/data/twigs/tags/item/rhyolite.json similarity index 100% rename from src/main/resources/data/twigs/tags/items/rhyolite.json rename to src/main/generated/data/twigs/tags/item/rhyolite.json diff --git a/src/main/resources/data/twigs/tags/items/schist.json b/src/main/generated/data/twigs/tags/item/schist.json similarity index 100% rename from src/main/resources/data/twigs/tags/items/schist.json rename to src/main/generated/data/twigs/tags/item/schist.json diff --git a/src/main/resources/data/twigs/tags/items/seashells.json b/src/main/generated/data/twigs/tags/item/seashells.json similarity index 100% rename from src/main/resources/data/twigs/tags/items/seashells.json rename to src/main/generated/data/twigs/tags/item/seashells.json diff --git a/src/main/generated/data/twigs/tags/item/silt_pots.json b/src/main/generated/data/twigs/tags/item/silt_pots.json new file mode 100644 index 00000000..f14badfe --- /dev/null +++ b/src/main/generated/data/twigs/tags/item/silt_pots.json @@ -0,0 +1,21 @@ +{ + "values": [ + "twigs:silt_pot", + "twigs:white_silt_pot", + "twigs:orange_silt_pot", + "twigs:magenta_silt_pot", + "twigs:light_blue_silt_pot", + "twigs:yellow_silt_pot", + "twigs:lime_silt_pot", + "twigs:pink_silt_pot", + "twigs:gray_silt_pot", + "twigs:light_gray_silt_pot", + "twigs:cyan_silt_pot", + "twigs:purple_silt_pot", + "twigs:blue_silt_pot", + "twigs:brown_silt_pot", + "twigs:green_silt_pot", + "twigs:red_silt_pot", + "twigs:black_silt_pot" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/tags/items/tables.json b/src/main/generated/data/twigs/tags/item/tables.json similarity index 100% rename from src/main/resources/data/twigs/tags/items/tables.json rename to src/main/generated/data/twigs/tags/item/tables.json diff --git a/src/main/generated/data/twigs/tags/worldgen/biome/azalea_flowers_generate.json b/src/main/generated/data/twigs/tags/worldgen/biome/azalea_flowers_generate.json new file mode 100644 index 00000000..14035f0a --- /dev/null +++ b/src/main/generated/data/twigs/tags/worldgen/biome/azalea_flowers_generate.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:lush_caves" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/tags/worldgen/biome/bloodstone_generates.json b/src/main/generated/data/twigs/tags/worldgen/biome/bloodstone_generates.json similarity index 85% rename from src/main/resources/data/twigs/tags/worldgen/biome/bloodstone_generates.json rename to src/main/generated/data/twigs/tags/worldgen/biome/bloodstone_generates.json index 93f3929b..331db936 100644 --- a/src/main/resources/data/twigs/tags/worldgen/biome/bloodstone_generates.json +++ b/src/main/generated/data/twigs/tags/worldgen/biome/bloodstone_generates.json @@ -1,5 +1,4 @@ { - "replace": false, "values": [ "minecraft:crimson_forest", "minecraft:warped_forest", diff --git a/src/main/generated/data/twigs/tags/worldgen/biome/has_structure/bloodstone_obelisk.json b/src/main/generated/data/twigs/tags/worldgen/biome/has_structure/bloodstone_obelisk.json new file mode 100644 index 00000000..7f58ace7 --- /dev/null +++ b/src/main/generated/data/twigs/tags/worldgen/biome/has_structure/bloodstone_obelisk.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:nether_wastes", + "minecraft:crimson_forest" + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/tags/worldgen/biome/schist_generates.json b/src/main/generated/data/twigs/tags/worldgen/biome/schist_generates.json new file mode 100644 index 00000000..cbf9f0e3 --- /dev/null +++ b/src/main/generated/data/twigs/tags/worldgen/biome/schist_generates.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#c:is_mountain" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/twigs/tags/worldgen/biome/silt_generates.json b/src/main/generated/data/twigs/tags/worldgen/biome/silt_generates.json similarity index 80% rename from src/main/resources/data/twigs/tags/worldgen/biome/silt_generates.json rename to src/main/generated/data/twigs/tags/worldgen/biome/silt_generates.json index 4ef3947f..c4121c27 100644 --- a/src/main/resources/data/twigs/tags/worldgen/biome/silt_generates.json +++ b/src/main/generated/data/twigs/tags/worldgen/biome/silt_generates.json @@ -1,5 +1,4 @@ { - "replace": false, "values": [ "minecraft:nether_wastes", "minecraft:soul_sand_valley" diff --git a/src/main/resources/data/twigs/tags/worldgen/biome/spawns_pebble.json b/src/main/generated/data/twigs/tags/worldgen/biome/spawns_pebble.json similarity index 95% rename from src/main/resources/data/twigs/tags/worldgen/biome/spawns_pebble.json rename to src/main/generated/data/twigs/tags/worldgen/biome/spawns_pebble.json index cce82ae6..f2a2588f 100644 --- a/src/main/resources/data/twigs/tags/worldgen/biome/spawns_pebble.json +++ b/src/main/generated/data/twigs/tags/worldgen/biome/spawns_pebble.json @@ -1,5 +1,4 @@ { - "replace": false, "values": [ "#minecraft:is_river", "#minecraft:is_savanna", diff --git a/src/main/resources/data/twigs/tags/worldgen/biome/spawns_sea_shell.json b/src/main/generated/data/twigs/tags/worldgen/biome/spawns_sea_shell.json similarity index 89% rename from src/main/resources/data/twigs/tags/worldgen/biome/spawns_sea_shell.json rename to src/main/generated/data/twigs/tags/worldgen/biome/spawns_sea_shell.json index f879de3a..76214cde 100644 --- a/src/main/resources/data/twigs/tags/worldgen/biome/spawns_sea_shell.json +++ b/src/main/generated/data/twigs/tags/worldgen/biome/spawns_sea_shell.json @@ -1,5 +1,4 @@ { - "replace": false, "values": [ "#minecraft:is_deep_ocean", "#minecraft:is_ocean", diff --git a/src/main/resources/data/twigs/tags/worldgen/biome/spawns_twig.json b/src/main/generated/data/twigs/tags/worldgen/biome/spawns_twig.json similarity index 83% rename from src/main/resources/data/twigs/tags/worldgen/biome/spawns_twig.json rename to src/main/generated/data/twigs/tags/worldgen/biome/spawns_twig.json index 240f7552..eaf4b644 100644 --- a/src/main/resources/data/twigs/tags/worldgen/biome/spawns_twig.json +++ b/src/main/generated/data/twigs/tags/worldgen/biome/spawns_twig.json @@ -1,5 +1,4 @@ { - "replace": false, "values": [ "#minecraft:is_forest", "#minecraft:is_taiga", diff --git a/src/main/generated/data/twigs/worldgen/configured_feature/azalea_flowers.json b/src/main/generated/data/twigs/worldgen/configured_feature/azalea_flowers.json index 6625f70e..8e19529b 100644 --- a/src/main/generated/data/twigs/worldgen/configured_feature/azalea_flowers.json +++ b/src/main/generated/data/twigs/worldgen/configured_feature/azalea_flowers.json @@ -4,10 +4,8 @@ "vertical_range": 3, "xz_radius": { "type": "minecraft:uniform", - "value": { - "max_inclusive": 4, - "min_inclusive": 2 - } + "max_inclusive": 4, + "min_inclusive": 2 } } } \ No newline at end of file diff --git a/src/main/generated/data/twigs/worldgen/structure/bloodstone_obelisk.json b/src/main/generated/data/twigs/worldgen/structure/bloodstone_obelisk.json new file mode 100644 index 00000000..8fcb8b6f --- /dev/null +++ b/src/main/generated/data/twigs/worldgen/structure/bloodstone_obelisk.json @@ -0,0 +1,7 @@ +{ + "type": "twigs:obelisk", + "biomes": "#twigs:has_structure/bloodstone_obelisk", + "spawn_overrides": {}, + "step": "surface_structures", + "terrain_adaptation": "beard_thin" +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/worldgen/structure_set/bloodstone_obelisk.json b/src/main/generated/data/twigs/worldgen/structure_set/bloodstone_obelisk.json new file mode 100644 index 00000000..3c3ad701 --- /dev/null +++ b/src/main/generated/data/twigs/worldgen/structure_set/bloodstone_obelisk.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 4206914, + "separation": 4, + "spacing": 20 + }, + "structures": [ + { + "structure": "twigs:bloodstone_obelisk", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/twigs/worldgen/template_pool/bloodstone_obelisk.json b/src/main/generated/data/twigs/worldgen/template_pool/bloodstone_obelisk.json new file mode 100644 index 00000000..6fb550b5 --- /dev/null +++ b/src/main/generated/data/twigs/worldgen/template_pool/bloodstone_obelisk.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "twigs:bloodstone_obelisk", + "processors": "minecraft:empty", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/src/main/java/com/ninni/twigs/Twigs.java b/src/main/java/com/ninni/twigs/Twigs.java index 99ccfd20..b8030bf0 100644 --- a/src/main/java/com/ninni/twigs/Twigs.java +++ b/src/main/java/com/ninni/twigs/Twigs.java @@ -1,28 +1,11 @@ package com.ninni.twigs; import com.google.common.reflect.Reflection; -import com.ninni.twigs.entity.Pebble; -import com.ninni.twigs.registry.TwigsBiomeModifier; -import com.ninni.twigs.registry.TwigsBlockEntityType; -import com.ninni.twigs.registry.TwigsBlocks; -import com.ninni.twigs.registry.TwigsCreativeModeTab; -import com.ninni.twigs.registry.TwigsEntityTypes; -import com.ninni.twigs.registry.TwigsFeatures; -import com.ninni.twigs.registry.TwigsItems; -import com.ninni.twigs.registry.TwigsLootTableAdditions; -import com.ninni.twigs.registry.TwigsParticleTypes; -import com.ninni.twigs.registry.TwigsSoundEvents; -import com.ninni.twigs.registry.TwigsStructurePieceTypes; -import com.ninni.twigs.registry.TwigsStructureTypes; +import com.ninni.twigs.registry.*; import com.ninni.twigs.stat.TwigsStats; import net.fabricmc.api.ModInitializer; import net.fabricmc.fabric.api.registry.OxidizableBlocksRegistry; import net.minecraft.Util; -import net.minecraft.core.Position; -import net.minecraft.core.dispenser.AbstractProjectileDispenseBehavior; -import net.minecraft.world.entity.projectile.Projectile; -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.DispenserBlock; @@ -49,13 +32,7 @@ public void onInitialize() { TwigsStructureTypes.class, TwigsStructurePieceTypes.class ); - - DispenserBlock.registerBehavior(TwigsItems.PEBBLE, new AbstractProjectileDispenseBehavior() { - @Override - protected Projectile getProjectile(Level world, Position position, ItemStack stack) { - return Util.make(new Pebble(world, position.x(), position.y(), position.z()), entity -> entity.setItem(stack)); - } - }); + DispenserBlock.registerProjectileBehavior(TwigsItems.PEBBLE); Util.make(new LinkedHashMap(), pairs -> { pairs.put(TwigsBlocks.COPPER_PILLAR, TwigsBlocks.WAXED_COPPER_PILLAR); diff --git a/src/main/java/com/ninni/twigs/TwigsClient.java b/src/main/java/com/ninni/twigs/TwigsClient.java index 907ca29e..b813ad25 100644 --- a/src/main/java/com/ninni/twigs/TwigsClient.java +++ b/src/main/java/com/ninni/twigs/TwigsClient.java @@ -42,7 +42,7 @@ public void onInitializeClient() { TwigsBlocks.BAMBOO_THATCH_SLAB ); - FabricModelPredicateProviderRegistry.register(TwigsItems.BRONZED_SEASHELL, new ResourceLocation("playing"), (itemStack, clientWorld, livingEntity, var) -> { + FabricModelPredicateProviderRegistry.register(TwigsItems.BRONZED_SEASHELL, ResourceLocation.withDefaultNamespace("playing"), (itemStack, clientWorld, livingEntity, var) -> { if (livingEntity == null) return 0.0F; return livingEntity.isUsingItem() && livingEntity.getUseItem() == itemStack ? 1.0F : 0.0F; diff --git a/src/main/java/com/ninni/twigs/TwigsTags.java b/src/main/java/com/ninni/twigs/TwigsTags.java index 1b2b7c3c..58b01163 100644 --- a/src/main/java/com/ninni/twigs/TwigsTags.java +++ b/src/main/java/com/ninni/twigs/TwigsTags.java @@ -1,6 +1,8 @@ package com.ninni.twigs; +import net.minecraft.core.Registry; import net.minecraft.core.registries.Registries; +import net.minecraft.resources.ResourceKey; import net.minecraft.resources.ResourceLocation; import net.minecraft.tags.TagKey; import net.minecraft.world.entity.EntityType; @@ -13,33 +15,38 @@ @SuppressWarnings("unused") public interface TwigsTags { - //item tags - TagKey SCHIST_ITEM = TagKey.create(Registries.ITEM, new ResourceLocation(MOD_ID, "schist")); - TagKey RHYOLITE_ITEM = TagKey.create(Registries.ITEM, new ResourceLocation(MOD_ID, "rhyolite")); - TagKey BLOODSTONE_ITEM = TagKey.create(Registries.ITEM, new ResourceLocation(MOD_ID, "bloodstone")); - TagKey PACKED_SILT_ITEM = TagKey.create(Registries.ITEM, new ResourceLocation(MOD_ID, "packed_silt")); - TagKey PACKED_SILT_FULL_BLOCKS = TagKey.create(Registries.ITEM, new ResourceLocation(MOD_ID, "packed_silt_full_blocks")); - TagKey SILT_POTS_ITEM = TagKey.create(Registries.ITEM, new ResourceLocation(MOD_ID, "silt_pots")); - TagKey SEASHELLS = TagKey.create(Registries.ITEM, new ResourceLocation(MOD_ID, "seashells")); - TagKey TABLES_ITEM = TagKey.create(Registries.ITEM, new ResourceLocation(MOD_ID, "tables")); - - //block tags - TagKey SCHIST_BLOCK = TagKey.create(Registries.BLOCK, new ResourceLocation(MOD_ID, "schist")); - TagKey RHYOLITE_BLOCK = TagKey.create(Registries.BLOCK, new ResourceLocation(MOD_ID, "rhyolite")); - TagKey BLOODSTONE_BLOCK = TagKey.create(Registries.BLOCK, new ResourceLocation(MOD_ID, "bloodstone")); - TagKey PACKED_SILT_BLOCK = TagKey.create(Registries.BLOCK, new ResourceLocation(MOD_ID, "packed_silt")); - TagKey SILT_POTS_BLOCK = TagKey.create(Registries.BLOCK, new ResourceLocation(MOD_ID, "silt_pots")); - TagKey OFFSET_REMOVER = TagKey.create(Registries.BLOCK, new ResourceLocation(MOD_ID, "offset_remover")); - TagKey TABLES_BLOCK = TagKey.create(Registries.BLOCK, new ResourceLocation(MOD_ID, "tables")); - - //biome tags - TagKey BLOODSTONE_GENERATES = TagKey.create(Registries.BIOME, new ResourceLocation(MOD_ID, "bloodstone_generates")); - TagKey SCHIST_GENERATES = TagKey.create(Registries.BIOME, new ResourceLocation(MOD_ID, "schist_generates")); - TagKey SILT_GENERATES = TagKey.create(Registries.BIOME, new ResourceLocation(MOD_ID, "silt_generates")); - TagKey AZALEA_FLOWERS_GENERATE = TagKey.create(Registries.BIOME, new ResourceLocation(MOD_ID, "azalea_flowers_generate")); - TagKey SPAWNS_TWIG = TagKey.create(Registries.BIOME, new ResourceLocation(MOD_ID, "spawns_twig")); - TagKey SPAWNS_PEBBLE = TagKey.create(Registries.BIOME, new ResourceLocation(MOD_ID, "spawns_pebble")); - TagKey SPAWNS_SEA_SHELL = TagKey.create(Registries.BIOME, new ResourceLocation(MOD_ID, "spawns_sea_shell")); - - TagKey> BAMBOO_LEAVES_SLOW_IMMUNE = TagKey.create(Registries.ENTITY_TYPE, new ResourceLocation(MOD_ID, "bamboo_leaves_slow_immune")); + //item tags + TagKey SCHIST_ITEM = createTag(Registries.ITEM, "schist"); + TagKey RHYOLITE_ITEM = createTag(Registries.ITEM, "rhyolite"); + TagKey BLOODSTONE_ITEM = createTag(Registries.ITEM, "bloodstone"); + TagKey PACKED_SILT_ITEM = createTag(Registries.ITEM, "packed_silt"); + TagKey PACKED_SILT_FULL_BLOCKS = createTag(Registries.ITEM, "packed_silt_full_blocks"); + TagKey SILT_POTS_ITEM = createTag(Registries.ITEM, "silt_pots"); + TagKey SEASHELLS = createTag(Registries.ITEM, "seashells"); + TagKey TABLES_ITEM = createTag(Registries.ITEM, "tables"); + + //block tags + TagKey SCHIST_BLOCK = createTag(Registries.BLOCK, "schist"); + TagKey RHYOLITE_BLOCK = createTag(Registries.BLOCK, "rhyolite"); + TagKey BLOODSTONE_BLOCK = createTag(Registries.BLOCK, "bloodstone"); + TagKey PACKED_SILT_BLOCK = createTag(Registries.BLOCK, "packed_silt"); + TagKey SILT_POTS_BLOCK = createTag(Registries.BLOCK, "silt_pots"); + TagKey OFFSET_REMOVER = createTag(Registries.BLOCK, "offset_remover"); + TagKey TABLES_BLOCK = createTag(Registries.BLOCK, "tables"); + + //biome tags + TagKey HAS_STRUCTURE_BLOODSTONE_OBELISK = createTag(Registries.BIOME, "has_structure/bloodstone_obelisk"); + TagKey BLOODSTONE_GENERATES = createTag(Registries.BIOME, "bloodstone_generates"); + TagKey SCHIST_GENERATES = createTag(Registries.BIOME, "schist_generates"); + TagKey SILT_GENERATES = createTag(Registries.BIOME, "silt_generates"); + TagKey AZALEA_FLOWERS_GENERATE = createTag(Registries.BIOME, "azalea_flowers_generate"); + TagKey SPAWNS_TWIG = createTag(Registries.BIOME, "spawns_twig"); + TagKey SPAWNS_PEBBLE = createTag(Registries.BIOME, "spawns_pebble"); + TagKey SPAWNS_SEA_SHELL = createTag(Registries.BIOME, "spawns_sea_shell"); + + TagKey> BAMBOO_LEAVES_SLOW_IMMUNE = createTag(Registries.ENTITY_TYPE, "bamboo_leaves_slow_immune"); + + static TagKey createTag(ResourceKey> resourceKey, String path) { + return TagKey.create(resourceKey, ResourceLocation.fromNamespaceAndPath(MOD_ID, path)); + } } diff --git a/src/main/java/com/ninni/twigs/block/AzaleaFlowersBlock.java b/src/main/java/com/ninni/twigs/block/AzaleaFlowersBlock.java index 9666cd61..db23b872 100644 --- a/src/main/java/com/ninni/twigs/block/AzaleaFlowersBlock.java +++ b/src/main/java/com/ninni/twigs/block/AzaleaFlowersBlock.java @@ -1,5 +1,6 @@ package com.ninni.twigs.block; +import com.mojang.serialization.MapCodec; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.world.item.context.BlockPlaceContext; @@ -18,6 +19,7 @@ import net.minecraft.world.level.material.Fluids; public class AzaleaFlowersBlock extends MultifaceBlock implements SimpleWaterloggedBlock { + public static final MapCodec CODEC = simpleCodec(AzaleaFlowersBlock::new); private static final BooleanProperty WATERLOGGED = BlockStateProperties.WATERLOGGED; private final MultifaceSpreader spreader = new MultifaceSpreader(this); @@ -26,6 +28,11 @@ public AzaleaFlowersBlock(BlockBehaviour.Properties properties) { this.registerDefaultState(this.defaultBlockState().setValue(WATERLOGGED, false)); } + @Override + protected MapCodec codec() { + return CODEC; + } + protected void createBlockStateDefinition(StateDefinition.Builder builder) { super.createBlockStateDefinition(builder); builder.add(WATERLOGGED); diff --git a/src/main/java/com/ninni/twigs/block/BambooLeavesBlock.java b/src/main/java/com/ninni/twigs/block/BambooLeavesBlock.java index 15478abe..18e0830f 100644 --- a/src/main/java/com/ninni/twigs/block/BambooLeavesBlock.java +++ b/src/main/java/com/ninni/twigs/block/BambooLeavesBlock.java @@ -1,5 +1,6 @@ package com.ninni.twigs.block; +import com.mojang.serialization.MapCodec; import com.ninni.twigs.TwigsProperties; import com.ninni.twigs.TwigsTags; import net.minecraft.core.BlockPos; @@ -29,6 +30,7 @@ @SuppressWarnings("deprecation") public class BambooLeavesBlock extends BushBlock implements SimpleWaterloggedBlock { + public static final MapCodec CODEC = simpleCodec(BambooLeavesBlock::new); private static final IntegerProperty LAYERS = TwigsProperties.LAYERS_1_4; private static final BooleanProperty WATERLOGGED = BlockStateProperties.WATERLOGGED; public static final VoxelShape SHAPE_ONE = box(0, 0, 0, 16, 1, 16); @@ -40,6 +42,10 @@ public BambooLeavesBlock(Properties properties) { super(properties); this.registerDefaultState(this.stateDefinition.any().setValue(LAYERS, 1).setValue(WATERLOGGED, false)); } + @Override + protected MapCodec codec() { + return CODEC; + } @Override public VoxelShape getShape(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos, CollisionContext collisionContext) { diff --git a/src/main/java/com/ninni/twigs/block/BambooMatBlock.java b/src/main/java/com/ninni/twigs/block/BambooMatBlock.java index e07d6f41..d6f95d0c 100644 --- a/src/main/java/com/ninni/twigs/block/BambooMatBlock.java +++ b/src/main/java/com/ninni/twigs/block/BambooMatBlock.java @@ -57,7 +57,7 @@ public FluidState getFluidState(BlockState blockState) { } @Override - public boolean isPathfindable(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos, PathComputationType pathComputationType) { + public boolean isPathfindable(BlockState blockState, PathComputationType pathComputationType) { return true; } diff --git a/src/main/java/com/ninni/twigs/block/BrickTrailBlock.java b/src/main/java/com/ninni/twigs/block/BrickTrailBlock.java index 729a80e0..6152a824 100644 --- a/src/main/java/com/ninni/twigs/block/BrickTrailBlock.java +++ b/src/main/java/com/ninni/twigs/block/BrickTrailBlock.java @@ -1,8 +1,8 @@ package com.ninni.twigs.block; +import com.mojang.serialization.MapCodec; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; -import net.minecraft.tags.BlockTags; import net.minecraft.world.item.context.BlockPlaceContext; import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.LevelAccessor; @@ -24,6 +24,7 @@ @SuppressWarnings("deprecation") public class BrickTrailBlock extends HorizontalDirectionalBlock implements SimpleWaterloggedBlock { + public static final MapCodec CODEC = simpleCodec(BrickTrailBlock::new); public static final DirectionProperty FACING = BlockStateProperties.HORIZONTAL_FACING; public static final BooleanProperty WATERLOGGED = BlockStateProperties.WATERLOGGED; private static final VoxelShape SHAPE = box(0.0D, 0.0D, 0.0D, 16.0D, 1.0D, 16.0D); @@ -32,6 +33,10 @@ public BrickTrailBlock(Properties properties) { super(properties); this.registerDefaultState(this.defaultBlockState().setValue(FACING, Direction.NORTH).setValue(WATERLOGGED, false)); } + @Override + protected MapCodec codec() { + return CODEC; + } @Override public boolean canSurvive(BlockState blockState, LevelReader levelReader, BlockPos blockPos) { diff --git a/src/main/java/com/ninni/twigs/block/ColumnBlock.java b/src/main/java/com/ninni/twigs/block/ColumnBlock.java index 4b031bf4..eee4d28b 100644 --- a/src/main/java/com/ninni/twigs/block/ColumnBlock.java +++ b/src/main/java/com/ninni/twigs/block/ColumnBlock.java @@ -62,7 +62,7 @@ public VoxelShape getShape(BlockState state, BlockGetter blockGetter, BlockPos b } @Override - public boolean isPathfindable(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos, PathComputationType pathComputationType) { + public boolean isPathfindable(BlockState blockState, PathComputationType pathComputationType) { return false; } diff --git a/src/main/java/com/ninni/twigs/block/CompactedDripstoneBlock.java b/src/main/java/com/ninni/twigs/block/CompactedDripstoneBlock.java index 06f7e0c2..a33ae5df 100644 --- a/src/main/java/com/ninni/twigs/block/CompactedDripstoneBlock.java +++ b/src/main/java/com/ninni/twigs/block/CompactedDripstoneBlock.java @@ -48,7 +48,7 @@ public BlockState updateShape(BlockState state, Direction direction, BlockState } @Override - public boolean isPathfindable(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos, PathComputationType pathComputationType) { + public boolean isPathfindable(BlockState blockState, PathComputationType pathComputationType) { return false; } diff --git a/src/main/java/com/ninni/twigs/block/FacingBlock.java b/src/main/java/com/ninni/twigs/block/FacingBlock.java index e99a60a3..ef9bbb39 100644 --- a/src/main/java/com/ninni/twigs/block/FacingBlock.java +++ b/src/main/java/com/ninni/twigs/block/FacingBlock.java @@ -1,5 +1,6 @@ package com.ninni.twigs.block; +import com.mojang.serialization.MapCodec; import net.minecraft.core.Direction; import net.minecraft.world.item.context.BlockPlaceContext; import net.minecraft.world.level.block.Block; @@ -11,12 +12,17 @@ import org.jetbrains.annotations.Nullable; public class FacingBlock extends DirectionalBlock { + public static final MapCodec CODEC = simpleCodec(FacingBlock::new); public static final DirectionProperty FACING = BlockStateProperties.FACING; public FacingBlock(Properties properties) { super(properties); this.registerDefaultState(this.defaultBlockState().setValue(FACING, Direction.NORTH)); } + @Override + protected MapCodec codec() { + return CODEC; + } @Nullable @Override diff --git a/src/main/java/com/ninni/twigs/block/FallingBlockWithEntity.java b/src/main/java/com/ninni/twigs/block/FallingBlockWithEntity.java index b05f9130..8a1238c6 100644 --- a/src/main/java/com/ninni/twigs/block/FallingBlockWithEntity.java +++ b/src/main/java/com/ninni/twigs/block/FallingBlockWithEntity.java @@ -1,5 +1,6 @@ package com.ninni.twigs.block; +import com.mojang.serialization.MapCodec; import com.ninni.twigs.mixin.FallingBlockEntityInvoker; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; @@ -20,11 +21,17 @@ @SuppressWarnings("deprecation") public class FallingBlockWithEntity extends BaseEntityBlock implements Fallable { + public static final MapCodec CODEC = simpleCodec(FallingBlockWithEntity::new); public FallingBlockWithEntity(Properties settings) { super(settings); } + @Override + protected MapCodec codec() { + return CODEC; + } + @Override public void onPlace(BlockState blockState, Level level, BlockPos blockPos, BlockState blockState2, boolean bl) { level.scheduleTick(blockPos, this, this.getFallDelay()); @@ -44,7 +51,7 @@ public void tick(BlockState state, ServerLevel world, BlockPos pos, RandomSource } BlockEntity blockEntity = world.getBlockEntity(pos); FallingBlockEntity fallingBlockEntity = spawnFromBlock(world, pos, state); - if (blockEntity != null) fallingBlockEntity.blockData = blockEntity.saveWithoutMetadata(); + if (blockEntity != null) fallingBlockEntity.blockData = blockEntity.saveWithoutMetadata(world.registryAccess()); this.configureFallingBlockEntity(fallingBlockEntity); } diff --git a/src/main/java/com/ninni/twigs/block/FloorItemBlock.java b/src/main/java/com/ninni/twigs/block/FloorItemBlock.java index 821f5da4..6a14c965 100644 --- a/src/main/java/com/ninni/twigs/block/FloorItemBlock.java +++ b/src/main/java/com/ninni/twigs/block/FloorItemBlock.java @@ -2,7 +2,6 @@ import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; -import net.minecraft.tags.BlockTags; import net.minecraft.world.item.context.BlockPlaceContext; import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.LevelAccessor; @@ -69,7 +68,7 @@ public boolean canSurvive(BlockState blockState, LevelReader levelReader, BlockP } @Override - public boolean isPathfindable(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos, PathComputationType pathComputationType) { - return (pathComputationType == PathComputationType.AIR && !this.hasCollision) || super.isPathfindable(blockState, blockGetter, blockPos, pathComputationType); + public boolean isPathfindable(BlockState blockState, PathComputationType pathComputationType) { + return (pathComputationType == PathComputationType.AIR && !this.hasCollision) || super.isPathfindable(blockState, pathComputationType); } } diff --git a/src/main/java/com/ninni/twigs/block/LampBlock.java b/src/main/java/com/ninni/twigs/block/LampBlock.java index 109e9a73..e8bf9f45 100644 --- a/src/main/java/com/ninni/twigs/block/LampBlock.java +++ b/src/main/java/com/ninni/twigs/block/LampBlock.java @@ -3,7 +3,6 @@ import com.ninni.twigs.registry.TwigsSoundEvents; import net.minecraft.core.BlockPos; import net.minecraft.sounds.SoundSource; -import net.minecraft.world.InteractionHand; import net.minecraft.world.InteractionResult; import net.minecraft.world.entity.player.Player; import net.minecraft.world.level.Level; @@ -22,9 +21,8 @@ public LampBlock(Properties properties) { this.registerDefaultState(this.defaultBlockState().setValue(LIT, true)); } - @SuppressWarnings("deprecation") @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand interactionHand, BlockHitResult blockHitResult) { + public InteractionResult useWithoutItem(BlockState state, Level level, BlockPos pos, Player player, BlockHitResult blockHitResult) { if (!player.isShiftKeyDown()) { final boolean wasLit = state.getValue(LIT); level.setBlockAndUpdate(pos, state.setValue(LIT, !wasLit)); diff --git a/src/main/java/com/ninni/twigs/block/PaperLanternBlock.java b/src/main/java/com/ninni/twigs/block/PaperLanternBlock.java index a99425f4..0b6f55f3 100644 --- a/src/main/java/com/ninni/twigs/block/PaperLanternBlock.java +++ b/src/main/java/com/ninni/twigs/block/PaperLanternBlock.java @@ -4,6 +4,7 @@ import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.network.chat.Component; +import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.TooltipFlag; import net.minecraft.world.item.context.BlockPlaceContext; @@ -20,7 +21,6 @@ import net.minecraft.world.level.block.state.properties.BooleanProperty; import net.minecraft.world.level.material.FluidState; import net.minecraft.world.level.material.Fluids; -import net.minecraft.world.level.material.PushReaction; import net.minecraft.world.level.pathfinder.PathComputationType; import net.minecraft.world.phys.shapes.CollisionContext; import net.minecraft.world.phys.shapes.Shapes; @@ -95,7 +95,7 @@ public boolean canSurvive(BlockState state, LevelReader world, BlockPos pos) { } @Override - public boolean isPathfindable(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos, PathComputationType pathComputationType) { + public boolean isPathfindable(BlockState blockState, PathComputationType pathComputationType) { return false; } @@ -105,7 +105,7 @@ public FluidState getFluidState(BlockState state) { } @Override - public void appendHoverText(ItemStack itemStack, @Nullable BlockGetter blockGetter, List list, TooltipFlag tooltipFlag) { + public void appendHoverText(ItemStack itemStack, Item.TooltipContext tooltipContext, List list, TooltipFlag tooltipFlag) { if (this.content != Blocks.AIR) { list.add(this.createContentTooltip()); } diff --git a/src/main/java/com/ninni/twigs/block/PillarOxidizableBlock.java b/src/main/java/com/ninni/twigs/block/PillarOxidizableBlock.java index 2f9bd103..50b5a861 100644 --- a/src/main/java/com/ninni/twigs/block/PillarOxidizableBlock.java +++ b/src/main/java/com/ninni/twigs/block/PillarOxidizableBlock.java @@ -23,7 +23,7 @@ public boolean isRandomlyTicking(BlockState blockState) { @SuppressWarnings("deprecation") @Override public void randomTick(BlockState blockState, ServerLevel serverLevel, BlockPos blockPos, RandomSource randomSource) { - this.applyChangeOverTime(blockState, serverLevel, blockPos, randomSource); + this.changeOverTime(blockState, serverLevel, blockPos, randomSource); } @Override diff --git a/src/main/java/com/ninni/twigs/block/SiltPotBlock.java b/src/main/java/com/ninni/twigs/block/SiltPotBlock.java index 6af5c93c..121e7716 100644 --- a/src/main/java/com/ninni/twigs/block/SiltPotBlock.java +++ b/src/main/java/com/ninni/twigs/block/SiltPotBlock.java @@ -12,8 +12,8 @@ import net.minecraft.world.Container; import net.minecraft.world.Containers; import net.minecraft.world.InteractionHand; -import net.minecraft.world.InteractionResult; -import net.minecraft.world.entity.LivingEntity; +import net.minecraft.world.ItemInteractionResult; +import net.minecraft.world.entity.EquipmentSlot; import net.minecraft.world.entity.item.FallingBlockEntity; import net.minecraft.world.entity.monster.piglin.PiglinAi; import net.minecraft.world.entity.player.Player; @@ -65,34 +65,35 @@ public SoundType getSoundType(BlockState state) { } @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, BlockHitResult hit) { + protected ItemInteractionResult useItemOn(ItemStack stack, BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, BlockHitResult hit) { BlockEntity blockEntity = level.getBlockEntity(pos); - ItemStack stack = player.getItemInHand(hand); if (hit.getDirection() == Direction.UP && stack.getItem() instanceof BlockItem blockItem && blockItem.getBlock() instanceof FlowerBlock && state.getValue(FILLED)) { blockItem.place(new BlockPlaceContext(player, hand, stack, hit)); - return InteractionResult.sidedSuccess(level.isClientSide); + return ItemInteractionResult.sidedSuccess(level.isClientSide); } if (state.getValue(FILLED) && stack.getItem() instanceof ShovelItem) { level.setBlock(pos, state.setValue(FILLED, false), Block.UPDATE_NONE); - if (!player.getAbilities().instabuild) stack.hurtAndBreak(1, player, p -> p.broadcastBreakEvent(player.getUsedItemHand())); + if (!player.getAbilities().instabuild) { + stack.hurtAndBreak(1, player, (hand == InteractionHand.MAIN_HAND) ? EquipmentSlot.MAINHAND : EquipmentSlot.OFFHAND); + } if (level.isClientSide) { level.playSound(player, pos, SoundEvents.ROOTED_DIRT_BREAK, SoundSource.BLOCKS, 1, 1); - return InteractionResult.SUCCESS; + return ItemInteractionResult.SUCCESS; } } else if (!state.getValue(FILLED) && stack.is(Blocks.ROOTED_DIRT.asItem())) { level.setBlock(pos, state.setValue(FILLED, true), Block.UPDATE_NONE); if (level.isClientSide) { level.playSound(player, pos, SoundEvents.ROOTED_DIRT_PLACE, SoundSource.BLOCKS, 1, 1); - return InteractionResult.SUCCESS; + return ItemInteractionResult.SUCCESS; } if (!player.getAbilities().instabuild) stack.shrink(1); } else if (blockEntity instanceof SiltPotBlockEntity && !state.getValue(FILLED)) { - if (level.isClientSide) return InteractionResult.SUCCESS; - player.openMenu((SiltPotBlockEntity)blockEntity); + if (level.isClientSide) return ItemInteractionResult.SUCCESS; + player.openMenu((SiltPotBlockEntity) blockEntity); player.awardStat(TwigsStats.OPEN_SILT_POT); PiglinAi.angerNearbyPiglins(player, true); } - return InteractionResult.CONSUME; + return ItemInteractionResult.CONSUME; } @@ -100,29 +101,21 @@ public InteractionResult use(BlockState state, Level level, BlockPos pos, Player public void onBrokenAfterFall(Level level, BlockPos pos, FallingBlockEntity fallingBlockEntity) { SiltPotBlockEntity blockEntity = TwigsBlockEntityType.SILT_POT.create(pos, fallingBlockEntity.getBlockState()); assert blockEntity != null; - blockEntity.load(fallingBlockEntity.blockData); + blockEntity.loadAdditional(fallingBlockEntity.blockData, level.registryAccess()); Containers.dropContents(level, pos, blockEntity); } @Override public void onRemove(BlockState state, Level level, BlockPos pos, BlockState newState, boolean moved) { - if (state.is(newState.getBlock())) return; - BlockEntity blockEntity = level.getBlockEntity(pos); - - if (!moved && blockEntity instanceof Container) { - Containers.dropContents(level, pos, (Container)(blockEntity)); - level.updateNeighborsAt(pos, this); - } + if (state.is(newState.getBlock())) return; + BlockEntity blockEntity = level.getBlockEntity(pos); - super.onRemove(state, level, pos, newState, moved); - } + if (!moved && blockEntity instanceof Container) { + Containers.dropContents(level, pos, (Container) (blockEntity)); + level.updateNeighborsAt(pos, this); + } - @Override - public void setPlacedBy(Level level, BlockPos pos, BlockState blockState, @Nullable LivingEntity livingEntity, ItemStack itemStack) { - BlockEntity blockEntity; - if (itemStack.hasCustomHoverName() && (blockEntity = level.getBlockEntity(pos)) instanceof SiltPotBlockEntity) { - ((SiltPotBlockEntity)blockEntity).setCustomName(itemStack.getHoverName()); - } + super.onRemove(state, level, pos, newState, moved); } public BlockEntity newBlockEntity(BlockPos blockPos, BlockState blockState) { diff --git a/src/main/java/com/ninni/twigs/block/TableBlock.java b/src/main/java/com/ninni/twigs/block/TableBlock.java index aa18eb6d..0c9ba94c 100644 --- a/src/main/java/com/ninni/twigs/block/TableBlock.java +++ b/src/main/java/com/ninni/twigs/block/TableBlock.java @@ -142,7 +142,7 @@ protected void createBlockStateDefinition(StateDefinition.Builder registryLookup) { + super(dataOutput, registryLookup); + } + + @Override + public void generate() { + for (Block block : TwigsDataGenerator.getModBlocks()) { + switch (block) { + case SlabBlock slabBlock -> add(slabBlock, this::createSlabItemTable); + case SiltPotBlock siltPotBlock -> add(siltPotBlock, this::createNameableBlockEntityTable); + case MultifaceBlock multifaceBlock -> add(multifaceBlock, this::createCustomMultifaceBlockDrops); + default -> dropSelf(block); + } + } + + dropPottedContents(TwigsBlocks.POTTED_AZALEA_FLOWERS); + add(TwigsBlocks.SILT, (block) -> createSingleItemTableWithSilkTouch(block, TwigsItems.SILT_BALL, ConstantValue.exactly(4))); + + + add(TwigsBlocks.BAMBOO_LEAVES, (block) -> LootTable.lootTable() + .withPool(LootPool.lootPool().when(LootItemEntityPropertyCondition.entityPresent(LootContext.EntityTarget.THIS)) + .add(LootItem.lootTableItem(TwigsBlocks.BAMBOO_LEAVES) + .apply(SetItemCountFunction.setCount(ConstantValue.exactly(2)).when(getLeafState(block, 2))) + .apply(SetItemCountFunction.setCount(ConstantValue.exactly(3)).when(getLeafState(block, 3))) + .apply(SetItemCountFunction.setCount(ConstantValue.exactly(4)).when(getLeafState(block, 4))) + ) + ) + ); + } + + private LootItemBlockStatePropertyCondition.Builder getLeafState(Block block, int layer) { + return LootItemBlockStatePropertyCondition.hasBlockStateProperties(block).setProperties(StatePropertiesPredicate.Builder.properties().hasProperty(TwigsProperties.LAYERS_1_4, layer)); + } + + public LootTable.Builder createCustomMultifaceBlockDrops(Block block) { + return LootTable.lootTable().withPool(LootPool.lootPool().add( + this.applyExplosionDecay(block, + LootItem.lootTableItem(block).apply(Direction.values(), direction -> SetItemCountFunction.setCount(ConstantValue.exactly(1.0f), true).when(LootItemBlockStatePropertyCondition.hasBlockStateProperties(block).setProperties(StatePropertiesPredicate.Builder.properties().hasProperty(MultifaceBlock.getFaceProperty(direction), true))))).apply(SetItemCountFunction.setCount(ConstantValue.exactly(-1.0f), true) + ) + ) + ); + } +} diff --git a/src/main/java/com/ninni/twigs/data/TwigsChestLootTableProvider.java b/src/main/java/com/ninni/twigs/data/TwigsChestLootTableProvider.java new file mode 100644 index 00000000..23b13c87 --- /dev/null +++ b/src/main/java/com/ninni/twigs/data/TwigsChestLootTableProvider.java @@ -0,0 +1,65 @@ +package com.ninni.twigs.data; + +import com.ninni.twigs.registry.TwigsItems; +import com.ninni.twigs.registry.TwigsLootTables; +import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; +import net.fabricmc.fabric.api.datagen.v1.provider.SimpleFabricLootTableProvider; +import net.minecraft.core.HolderLookup; +import net.minecraft.resources.ResourceKey; +import net.minecraft.world.item.Items; +import net.minecraft.world.level.storage.loot.LootPool; +import net.minecraft.world.level.storage.loot.LootTable; +import net.minecraft.world.level.storage.loot.entries.EmptyLootItem; +import net.minecraft.world.level.storage.loot.entries.LootItem; +import net.minecraft.world.level.storage.loot.functions.SetItemCountFunction; +import net.minecraft.world.level.storage.loot.parameters.LootContextParamSets; +import net.minecraft.world.level.storage.loot.providers.number.UniformGenerator; + +import java.util.concurrent.CompletableFuture; +import java.util.function.BiConsumer; + +public class TwigsChestLootTableProvider extends SimpleFabricLootTableProvider { + public TwigsChestLootTableProvider(FabricDataOutput output, CompletableFuture registryLookup) { + super(output, registryLookup, LootContextParamSets.CHEST); + } + + @Override + public void generate(BiConsumer, LootTable.Builder> builder) { + builder.accept( + TwigsLootTables.BLOODSTONE_OBELISK_CHEST, + LootTable.lootTable() + .withPool(LootPool.lootPool() + .setRolls(UniformGenerator.between(0, 1)) + .with(LootItem.lootTableItem(Items.CROSSBOW).build()) + ) + .withPool(LootPool.lootPool() + .setRolls(UniformGenerator.between(2, 3)) + .with(EmptyLootItem.emptyItem().build()) + ) + .withPool(LootPool.lootPool() + .setRolls(UniformGenerator.between(1.0F, 3.0F)) + .with(LootItem.lootTableItem(TwigsItems.BLOODSTONE) + .apply(SetItemCountFunction.setCount(UniformGenerator.between(2, 3))).build() + ) + ) + .withPool(LootPool.lootPool() + .setRolls(UniformGenerator.between(2, 3)) + .with(LootItem.lootTableItem(Items.EXPERIENCE_BOTTLE).setWeight(7) + .apply(SetItemCountFunction.setCount(UniformGenerator.between(2, 8))).build() + ) + .with(LootItem.lootTableItem(Items.STRING).setWeight(4) + .apply(SetItemCountFunction.setCount(UniformGenerator.between(1, 6))).build() + ) + .with(LootItem.lootTableItem(Items.ARROW).setWeight(4) + .apply(SetItemCountFunction.setCount(UniformGenerator.between(2, 7))).build() + ) + .with(LootItem.lootTableItem(Items.SPECTRAL_ARROW).setWeight(5) + .apply(SetItemCountFunction.setCount(UniformGenerator.between(2, 6))).build() + ) + .with(LootItem.lootTableItem(Items.GOLD_INGOT).setWeight(3) + .apply(SetItemCountFunction.setCount(UniformGenerator.between(1, 2))).build() + ) + ) + ); + } +} diff --git a/src/main/java/com/ninni/twigs/data/TwigsDataGenerator.java b/src/main/java/com/ninni/twigs/data/TwigsDataGenerator.java index 4bfb73ea..8b23eaf0 100644 --- a/src/main/java/com/ninni/twigs/data/TwigsDataGenerator.java +++ b/src/main/java/com/ninni/twigs/data/TwigsDataGenerator.java @@ -1,11 +1,25 @@ package com.ninni.twigs.data; +import com.ninni.twigs.data.tags.TwigsBiomeTagProvider; +import com.ninni.twigs.data.tags.TwigsBlockTagProvider; +import com.ninni.twigs.data.tags.TwigsEntityTypeTagProvider; +import com.ninni.twigs.data.tags.TwigsItemTagProvider; +import com.ninni.twigs.data.worldgen.TwigsConfiguredFeatureProvider; +import com.ninni.twigs.data.worldgen.TwigsPlacedFeatureProvider; +import com.ninni.twigs.data.worldgen.TwigsStructureProvider; import com.ninni.twigs.registry.TwigsConfiguredFeatures; import com.ninni.twigs.registry.TwigsPlacedFeatures; import net.fabricmc.fabric.api.datagen.v1.DataGeneratorEntrypoint; import net.fabricmc.fabric.api.datagen.v1.FabricDataGenerator; import net.minecraft.core.RegistrySetBuilder; +import net.minecraft.core.registries.BuiltInRegistries; import net.minecraft.core.registries.Registries; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.item.Item; +import net.minecraft.world.level.block.Block; + +import java.util.List; +import static com.ninni.twigs.Twigs.MOD_ID; public class TwigsDataGenerator implements DataGeneratorEntrypoint { @@ -14,11 +28,37 @@ public void onInitializeDataGenerator(FabricDataGenerator fabricDataGenerator) { FabricDataGenerator.Pack pack = fabricDataGenerator.createPack(); pack.addProvider(TwigsConfiguredFeatureProvider::new); pack.addProvider(TwigsPlacedFeatureProvider::new); + pack.addProvider(TwigsStructureProvider::new); + + pack.addProvider(TwigsChestLootTableProvider::new); + pack.addProvider(TwigsBlockLootTableProvider::new); + + TwigsBlockTagProvider blockTags = pack.addProvider(TwigsBlockTagProvider::new); + pack.addProvider((o, r) -> new TwigsItemTagProvider(o, r, blockTags)); + pack.addProvider(TwigsEntityTypeTagProvider::new); + pack.addProvider(TwigsBiomeTagProvider::new); + + pack.addProvider(TwigsRecipeProvider::new); } @Override public void buildRegistry(RegistrySetBuilder registryBuilder) { registryBuilder.add(Registries.CONFIGURED_FEATURE, TwigsConfiguredFeatures::bootstrap); registryBuilder.add(Registries.PLACED_FEATURE, TwigsPlacedFeatures::bootstrap); + + registryBuilder.add(Registries.STRUCTURE, TwigsStructureProvider::bootstrapStructures); + registryBuilder.add(Registries.TEMPLATE_POOL, TwigsStructureProvider::bootstrapTemplatePools); + registryBuilder.add(Registries.STRUCTURE_SET, TwigsStructureProvider::bootstrapStructureSets); + } + + public static List getModBlocks() { + return BuiltInRegistries.BLOCK.stream().filter(block -> getId(block).getNamespace().equals(MOD_ID)).toList(); + } + + public static ResourceLocation getId(Block block) { + return BuiltInRegistries.BLOCK.getKey(block); + } + public static ResourceLocation getId(Item item) { + return BuiltInRegistries.ITEM.getKey(item); } } diff --git a/src/main/java/com/ninni/twigs/data/TwigsRecipeProvider.java b/src/main/java/com/ninni/twigs/data/TwigsRecipeProvider.java new file mode 100644 index 00000000..6a036e66 --- /dev/null +++ b/src/main/java/com/ninni/twigs/data/TwigsRecipeProvider.java @@ -0,0 +1,647 @@ +package com.ninni.twigs.data; + +import com.ninni.twigs.TwigsTags; +import com.ninni.twigs.registry.TwigsBlocks; +import com.ninni.twigs.registry.TwigsItems; +import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; +import net.fabricmc.fabric.api.datagen.v1.provider.FabricRecipeProvider; +import net.minecraft.core.HolderLookup; +import net.minecraft.data.recipes.RecipeCategory; +import net.minecraft.data.recipes.RecipeOutput; +import net.minecraft.data.recipes.ShapedRecipeBuilder; +import net.minecraft.data.recipes.ShapelessRecipeBuilder; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.item.Items; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.Blocks; + +import java.util.concurrent.CompletableFuture; + +import static com.ninni.twigs.Twigs.MOD_ID; +import static com.ninni.twigs.util.RecipeHelper.*; +import static net.minecraft.data.recipes.RecipeCategory.BUILDING_BLOCKS; + +public class TwigsRecipeProvider extends FabricRecipeProvider { + public TwigsRecipeProvider(FabricDataOutput output, CompletableFuture registriesFuture) { + super(output, registriesFuture); + } + + @Override + public void buildRecipes(RecipeOutput exporter) { + collectiblesRecipes(exporter); + bambooRecipes(exporter); + paperLanternRecipes(exporter); + lampRecipes(exporter); + tableRecipes(exporter); + basaltRecipes(exporter); + brickRecipes(exporter); + gravelBricksRecipes(exporter); + smoothStoneBricksRecipes(exporter); + columnRecipes(exporter); + copperPillarRecipes(exporter); + amethystAndMiscRecipes(exporter); + cobblestoneBricksRecipes(exporter); + twistingAndWeepingRecipes(exporter); + polishedTuffRecipes(exporter); + calciteRecipes(exporter); + schistRecipes(exporter); + rhyoliteRecipes(exporter); + bloodstoneRecipes(exporter); + siltRecipes(exporter); + coloredSiltRecipes(exporter); + } + + private void collectiblesRecipes(RecipeOutput exporter) { + ShapelessRecipeBuilder.shapeless(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.AZALEA_FLOWERS, 6) + .requires(Blocks.FLOWERING_AZALEA_LEAVES) + .unlockedBy("has_azalea_leaves", has(Blocks.FLOWERING_AZALEA_LEAVES)) + .save(exporter, ResourceLocation.fromNamespaceAndPath(MOD_ID, "azalea_flowers_from_flowering_azalea_leaves")); + + ShapelessRecipeBuilder.shapeless(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.AZALEA_FLOWERS, 6) + .requires(Blocks.FLOWERING_AZALEA) + .unlockedBy("has_azalea", has(Blocks.FLOWERING_AZALEA)) + .save(exporter, ResourceLocation.fromNamespaceAndPath(MOD_ID, "azalea_flowers_from_flowering_azalea")); + + ShapelessRecipeBuilder.shapeless(RecipeCategory.BUILDING_BLOCKS, Items.STICK, 2) + .requires(TwigsItems.TWIG) + .unlockedBy("has_twig", has(TwigsItems.TWIG)) + .save(exporter, ResourceLocation.fromNamespaceAndPath(MOD_ID, "twig_to_stick")); + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, Items.COBBLESTONE, 1) + .pattern("##") + .pattern("##") + .define('#', TwigsItems.PEBBLE) + .unlockedBy("has_pebble", has(TwigsItems.PEBBLE)) + .save(exporter, ResourceLocation.fromNamespaceAndPath(MOD_ID, "cobblestone_from_pebble")); + + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, Items.BONE_MEAL, 3) + .pattern("#") + .define('#', TwigsTags.SEASHELLS) + .unlockedBy("has_seashells", has(TwigsTags.SEASHELLS)) + .save(exporter, ResourceLocation.fromNamespaceAndPath(MOD_ID, "bone_meal_from_seashells")); + + } + + private void bambooRecipes(RecipeOutput exporter) { + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.BAMBOO_MAT, 2) + .pattern("###") + .define('#', Items.BAMBOO) + .unlockedBy("has_bamboo", has(Items.BAMBOO)) + .save(exporter); + + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.BAMBOO_THATCH_SLAB, 6) + .pattern("###") + .define('#', TwigsBlocks.BAMBOO_THATCH) + .unlockedBy("has_bamboo_thatch", has(TwigsBlocks.BAMBOO_THATCH)) + .save(exporter); + + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.BAMBOO_THATCH, 2) + .pattern("##") + .pattern("##") + .define('#', TwigsBlocks.BAMBOO_LEAVES) + .unlockedBy("has_bamboo_leaves", has(TwigsBlocks.BAMBOO_LEAVES)) + .save(exporter); + } + + private void paperLanternRecipes(RecipeOutput exporter) { + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.PAPER_LANTERN, 1) + .pattern("###") + .pattern("#T#") + .pattern("###") + .define('#', Items.PAPER) + .define('T', Items.TORCH) + .unlockedBy("has_paper", has(Items.PAPER)) + .unlockedBy("has_torch", has(Items.TORCH)) + .save(exporter); + quickPaperLanternRecipe(exporter, TwigsBlocks.ALLIUM_PAPER_LANTERN, Items.ALLIUM); + quickPaperLanternRecipe(exporter, TwigsBlocks.BLUE_ORCHID_PAPER_LANTERN, Items.BLUE_ORCHID); + quickPaperLanternRecipe(exporter, TwigsBlocks.CRIMSON_ROOTS_PAPER_LANTERN, Items.CRIMSON_ROOTS); + quickPaperLanternRecipe(exporter, TwigsBlocks.DANDELION_PAPER_LANTERN, Items.DANDELION); + quickPaperLanternRecipe(exporter, TwigsBlocks.TORCHFLOWER_PAPER_LANTERN, Items.TORCHFLOWER); + } + + private void lampRecipes(RecipeOutput exporter) { + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.LAMP, 1) + .pattern("iii") + .pattern("iTi") + .pattern("iCi") + .define('i', Items.IRON_INGOT) + .define('T', Items.TORCH) + .define('C', Items.COAL) + .unlockedBy("has_iron_ingot", has(Items.IRON_INGOT)) + .unlockedBy("has_torch", has(Items.TORCH)) + .unlockedBy("has_coal", has(Items.COAL)) + .save(exporter); + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.SOUL_LAMP, 1) + .pattern("iii") + .pattern("iSi") + .pattern("iFi") + .define('i', Items.IRON_INGOT) + .define('S', Items.SOUL_TORCH) + .define('F', Items.SOUL_SAND) + .unlockedBy("has_iron_ingot", has(Items.IRON_INGOT)) + .unlockedBy("has_soul_torch", has(Items.SOUL_TORCH)) + .unlockedBy("has_soul_sand", has(Items.SOUL_SAND)) + .save(exporter); + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.WARPED_SHROOMLAMP, 1) + .pattern("###") + .pattern("SSS") + .pattern("###") + .define('#', Items.WARPED_PLANKS) + .define('S', Items.SHROOMLIGHT) + .unlockedBy("has_warped_planks", has(Items.WARPED_PLANKS)) + .unlockedBy("has_shroomlight", has(Items.SHROOMLIGHT)) + .save(exporter); + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.CRIMSON_SHROOMLAMP, 1) + .pattern("###") + .pattern("SSS") + .pattern("###") + .define('#', Items.CRIMSON_PLANKS) + .define('S', Items.SHROOMLIGHT) + .unlockedBy("has_crimson_planks", has(Items.CRIMSON_PLANKS)) + .unlockedBy("has_shroomlight", has(Items.SHROOMLIGHT)) + .save(exporter); + } + + private void tableRecipes(RecipeOutput exporter) { + quickTableRecipe(exporter, TwigsBlocks.ACACIA_TABLE, Blocks.ACACIA_SLAB, Blocks.ACACIA_FENCE, Blocks.ACACIA_PLANKS); + quickTableRecipe(exporter, TwigsBlocks.BAMBOO_TABLE, Blocks.BAMBOO_SLAB, Blocks.BAMBOO_FENCE, Blocks.BAMBOO_PLANKS); + quickTableRecipe(exporter, TwigsBlocks.BIRCH_TABLE, Blocks.BIRCH_SLAB, Blocks.BIRCH_FENCE, Blocks.BIRCH_PLANKS); + quickTableRecipe(exporter, TwigsBlocks.CHERRY_TABLE, Blocks.CHERRY_SLAB, Blocks.CHERRY_FENCE, Blocks.CHERRY_PLANKS); + quickTableRecipe(exporter, TwigsBlocks.CRIMSON_TABLE, Blocks.CRIMSON_SLAB, Blocks.CRIMSON_FENCE, Blocks.CRIMSON_PLANKS); + quickTableRecipe(exporter, TwigsBlocks.DARK_OAK_TABLE, Blocks.DARK_OAK_SLAB, Blocks.DARK_OAK_FENCE, Blocks.DARK_OAK_PLANKS); + quickTableRecipe(exporter, TwigsBlocks.JUNGLE_TABLE, Blocks.JUNGLE_SLAB, Blocks.JUNGLE_FENCE, Blocks.JUNGLE_PLANKS); + quickTableRecipe(exporter, TwigsBlocks.MANGROVE_TABLE, Blocks.MANGROVE_SLAB, Blocks.MANGROVE_FENCE, Blocks.MANGROVE_PLANKS); + quickTableRecipe(exporter, TwigsBlocks.OAK_TABLE, Blocks.OAK_SLAB, Blocks.OAK_FENCE, Blocks.OAK_PLANKS); + quickTableRecipe(exporter, TwigsBlocks.SPRUCE_TABLE, Blocks.SPRUCE_SLAB, Blocks.SPRUCE_FENCE, Blocks.SPRUCE_PLANKS); + quickTableRecipe(exporter, TwigsBlocks.WARPED_TABLE, Blocks.WARPED_SLAB, Blocks.WARPED_FENCE, Blocks.WARPED_PLANKS); + } + + private void basaltRecipes(RecipeOutput exporter) { + + quick2x2Recipe(exporter, TwigsBlocks.POLISHED_BASALT_BRICKS, Blocks.POLISHED_BASALT); + quickStonecuttingRecipe(exporter, TwigsBlocks.POLISHED_BASALT_BRICKS, Blocks.POLISHED_BASALT, 1); + + quickPolishedRecipes(exporter, TwigsBlocks.SMOOTH_BASALT_BRICKS, + TwigsBlocks.SMOOTH_BASALT_BRICK_SLAB, TwigsBlocks.SMOOTH_BASALT_BRICK_STAIRS, TwigsBlocks.SMOOTH_BASALT_BRICK_WALL, + Blocks.SMOOTH_BASALT); + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.CHISELED_SMOOTH_BASALT_BRICKS, 1) + .pattern("#") + .pattern("#") + .define('#', TwigsBlocks.SMOOTH_BASALT_BRICK_SLAB) + .unlockedBy("has_smooth_basalt_brick_slab", has(TwigsBlocks.SMOOTH_BASALT_BRICK_SLAB)) + .unlockedBy("has_chiseled_smooth_basalt_bricks", has(TwigsBlocks.CHISELED_SMOOTH_BASALT_BRICKS)) + .save(exporter); + + quickStonecuttingRecipe(exporter, TwigsBlocks.CHISELED_SMOOTH_BASALT_BRICKS, TwigsBlocks.SMOOTH_BASALT_BRICKS, 1); + } + + private void brickRecipes(RecipeOutput exporter) { + quick2x2Recipe(exporter, TwigsBlocks.MIXED_BRICKS, Blocks.BRICKS); + quickStonecuttingRecipe(exporter, TwigsBlocks.MIXED_BRICKS, Blocks.BRICKS, 1); + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.CHISELED_BRICKS, 1) + .pattern("#") + .pattern("#") + .define('#', Blocks.BRICK_SLAB) + .unlockedBy("has_brick_slab", has(Blocks.BRICK_SLAB)) + .unlockedBy("has_chiseled_bricks", has(TwigsBlocks.CHISELED_BRICKS)) + .save(exporter); + quickStonecuttingRecipe(exporter, TwigsBlocks.CHISELED_BRICKS, Blocks.BRICKS, 1); + + quickSmeltingRecipe(exporter, TwigsBlocks.CRACKED_BRICKS, Blocks.BRICKS); + + ShapelessRecipeBuilder.shapeless(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.MOSSY_BRICKS) + .requires(Blocks.BRICKS) + .requires(Blocks.MOSS_BLOCK) + .unlockedBy("has_bricks", has(Blocks.BRICKS)) + .unlockedBy("has_moss_block", has(Blocks.MOSS_BLOCK)) + .save(exporter, ResourceLocation.fromNamespaceAndPath(MOD_ID, "mossy_bricks_from_bricks")); + ShapelessRecipeBuilder.shapeless(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.MOSSY_BRICKS) + .requires(Blocks.BRICKS) + .requires(Blocks.VINE) + .unlockedBy("has_bricks", has(Blocks.BRICKS)) + .unlockedBy("has_vines", has(Blocks.VINE)) + .save(exporter, ResourceLocation.fromNamespaceAndPath(MOD_ID, "mossy_bricks_from_vines")); + quickSlabStairsWallRecipe(exporter, TwigsBlocks.MOSSY_BRICK_SLAB, TwigsBlocks.MOSSY_BRICK_STAIRS, TwigsBlocks.MOSSY_BRICK_WALL, + TwigsBlocks.MOSSY_BRICKS); + + quickTrailRecipe(exporter, TwigsBlocks.BRICK_TRAIL, Blocks.BRICKS); + quickStonecuttingRecipe(exporter, TwigsBlocks.BRICK_TRAIL, Blocks.BRICKS, 2); + + } + + private void gravelBricksRecipes(RecipeOutput exporter) { + Block brick = TwigsBlocks.GRAVEL_BRICKS; + quick2x2Recipe(exporter, brick, Blocks.GRAVEL); + + ShapedRecipeBuilder.shaped(BUILDING_BLOCKS, TwigsBlocks.GRAVEL_BRICK_SLAB, 6) + .pattern("###") + .define('#', brick) + .unlockedBy(getHasName(brick), has(brick)) + .save(exporter); + + ShapedRecipeBuilder.shaped(BUILDING_BLOCKS, TwigsBlocks.GRAVEL_BRICK_STAIRS, 4) + .pattern("# ") + .pattern("## ") + .pattern("###") + .define('#', brick) + .unlockedBy(getHasName(brick), has(brick)) + .save(exporter); + + ShapedRecipeBuilder.shaped(BUILDING_BLOCKS, TwigsBlocks.GRAVEL_BRICK_WALL, 6) + .pattern("###") + .pattern("###") + .define('#', brick) + .unlockedBy(getHasName(brick), has(brick)) + .save(exporter); + + } + + private void smoothStoneBricksRecipes(RecipeOutput exporter) { + quickPolishedRecipes(exporter, TwigsBlocks.SMOOTH_STONE_BRICKS, + TwigsBlocks.SMOOTH_STONE_BRICK_SLAB, TwigsBlocks.SMOOTH_STONE_BRICK_STAIRS, TwigsBlocks.SMOOTH_STONE_BRICK_WALL, + Blocks.SMOOTH_STONE); + } + + private void columnRecipes(RecipeOutput exporter) { + quickColumnRecipe(exporter, TwigsBlocks.QUARTZ_COLUMN, Blocks.QUARTZ_BLOCK); + quickColumnRecipe(exporter, TwigsBlocks.STONE_COLUMN, Blocks.STONE); + quickColumnRecipe(exporter, TwigsBlocks.DEEPSLATE_COLUMN, Blocks.DEEPSLATE); + quickColumnRecipe(exporter, TwigsBlocks.BLACKSTONE_COLUMN, Blocks.BLACKSTONE); + } + + private void copperPillarRecipes(RecipeOutput exporter) { + quickCopperPillarRecipe(exporter, TwigsBlocks.COPPER_PILLAR, + Blocks.CUT_COPPER, Blocks.CUT_COPPER_SLAB, Blocks.COPPER_BLOCK); + quickCopperPillarRecipe(exporter, TwigsBlocks.EXPOSED_COPPER_PILLAR, + Blocks.EXPOSED_CUT_COPPER, Blocks.EXPOSED_CUT_COPPER_SLAB, Blocks.EXPOSED_COPPER); + quickCopperPillarRecipe(exporter, TwigsBlocks.WEATHERED_COPPER_PILLAR, + Blocks.WEATHERED_CUT_COPPER, Blocks.WEATHERED_CUT_COPPER_SLAB, Blocks.WEATHERED_COPPER); + quickCopperPillarRecipe(exporter, TwigsBlocks.OXIDIZED_COPPER_PILLAR, + Blocks.OXIDIZED_CUT_COPPER, Blocks.OXIDIZED_CUT_COPPER_SLAB, Blocks.OXIDIZED_COPPER); + + quickCopperPillarRecipe(exporter, TwigsBlocks.WAXED_COPPER_PILLAR, + Blocks.WAXED_CUT_COPPER, Blocks.WAXED_CUT_COPPER_SLAB, Blocks.WAXED_COPPER_BLOCK); + quickCopperPillarRecipe(exporter, TwigsBlocks.WAXED_EXPOSED_COPPER_PILLAR, + Blocks.WAXED_EXPOSED_CUT_COPPER, Blocks.WAXED_EXPOSED_CUT_COPPER_SLAB, Blocks.WAXED_EXPOSED_COPPER); + quickCopperPillarRecipe(exporter, TwigsBlocks.WAXED_WEATHERED_COPPER_PILLAR, + Blocks.WAXED_WEATHERED_CUT_COPPER, Blocks.WAXED_WEATHERED_CUT_COPPER_SLAB, Blocks.WAXED_WEATHERED_COPPER); + quickCopperPillarRecipe(exporter, TwigsBlocks.WAXED_OXIDIZED_COPPER_PILLAR, + Blocks.WAXED_OXIDIZED_CUT_COPPER, Blocks.WAXED_OXIDIZED_CUT_COPPER_SLAB, Blocks.WAXED_OXIDIZED_COPPER); + } + + private void amethystAndMiscRecipes(RecipeOutput exporter) { + + quick2x2Recipe(exporter, TwigsBlocks.POLISHED_AMETHYST, Blocks.AMETHYST_BLOCK); + quickStonecuttingRecipe(exporter, TwigsBlocks.POLISHED_AMETHYST, Blocks.AMETHYST_BLOCK, 1); + + quick2x2Recipe(exporter, TwigsBlocks.CUT_AMETHYST, TwigsBlocks.POLISHED_AMETHYST); + quickStonecuttingRecipe(exporter, TwigsBlocks.CUT_AMETHYST, TwigsBlocks.POLISHED_AMETHYST, 1); + quickStonecuttingRecipe(exporter, TwigsBlocks.CUT_AMETHYST, Blocks.AMETHYST_BLOCK, 1); + + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.COMPACTED_DRIPSTONE, 2) + .pattern("#") + .pattern("#") + .define('#', Blocks.POINTED_DRIPSTONE) + .unlockedBy("has_pointed_dripstone", has(Blocks.POINTED_DRIPSTONE)) + .unlockedBy("has_compacted_dripstone", has(TwigsBlocks.COMPACTED_DRIPSTONE)) + .save(exporter); + + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.ROCKY_DIRT, 4) + .pattern("#C") + .pattern("C#") + .define('#', Blocks.DIRT) + .define('C', TwigsItems.PEBBLE) + .unlockedBy("has_pebble", has(TwigsItems.PEBBLE)) + .unlockedBy("has_dirt", has(Blocks.DIRT)) + .save(exporter); + } + + private void cobblestoneBricksRecipes(RecipeOutput exporter) { + + quick2x2Recipe(exporter, TwigsBlocks.COBBLESTONE_BRICKS, Blocks.COBBLESTONE); + quickStonecuttingRecipe(exporter, TwigsBlocks.COBBLESTONE_BRICKS, Blocks.COBBLESTONE, 1); + + quickSlabStairsWallRecipe(exporter, + TwigsBlocks.COBBLESTONE_BRICK_SLAB, TwigsBlocks.COBBLESTONE_BRICK_STAIRS, TwigsBlocks.COBBLESTONE_BRICK_WALL, + TwigsBlocks.COBBLESTONE_BRICKS); + quickSlabStairsWallStonecuttingRecipe(exporter, + TwigsBlocks.COBBLESTONE_BRICK_SLAB, TwigsBlocks.COBBLESTONE_BRICK_STAIRS, TwigsBlocks.COBBLESTONE_BRICK_WALL, + Blocks.COBBLESTONE); + quickSmeltingRecipe(exporter, TwigsBlocks.CRACKED_COBBLESTONE_BRICKS, TwigsBlocks.COBBLESTONE_BRICKS); + + // this is a new recipe yes but it makes sense + quick2x2Recipe(exporter, TwigsBlocks.MOSSY_COBBLESTONE_BRICKS, Blocks.MOSSY_COBBLESTONE); + ShapelessRecipeBuilder.shapeless(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.MOSSY_COBBLESTONE_BRICKS) + .requires(TwigsBlocks.COBBLESTONE_BRICKS) + .requires(Blocks.MOSS_BLOCK) + .unlockedBy("has_cobblestone_bricks", has(TwigsBlocks.COBBLESTONE_BRICKS)) + .unlockedBy("has_moss_block", has(Blocks.MOSS_BLOCK)) + .save(exporter, ResourceLocation.fromNamespaceAndPath(MOD_ID, "mossy_cobblestone_bricks_from_moss")); + quickStonecuttingRecipe(exporter, TwigsBlocks.MOSSY_COBBLESTONE_BRICKS, Blocks.MOSSY_COBBLESTONE, 1); + quickSlabStairsWallRecipe(exporter, + TwigsBlocks.MOSSY_COBBLESTONE_BRICK_SLAB, TwigsBlocks.MOSSY_COBBLESTONE_BRICK_STAIRS, TwigsBlocks.MOSSY_COBBLESTONE_BRICK_WALL, + TwigsBlocks.MOSSY_COBBLESTONE_BRICKS); + quickSlabStairsWallStonecuttingRecipe(exporter, + TwigsBlocks.MOSSY_COBBLESTONE_BRICK_SLAB, TwigsBlocks.MOSSY_COBBLESTONE_BRICK_STAIRS, TwigsBlocks.MOSSY_COBBLESTONE_BRICK_WALL, + Blocks.MOSSY_COBBLESTONE); + } + + private void twistingAndWeepingRecipes(RecipeOutput exporter) { + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICKS, 8) + .pattern("###") + .pattern("#T#") + .pattern("###") + .define('#', Blocks.POLISHED_BLACKSTONE_BRICKS) + .define('T', Items.TWISTING_VINES) + .unlockedBy("has_polished_blackstone_bricks", has(Blocks.POLISHED_BLACKSTONE_BRICKS)) + .unlockedBy("has_twisting_vines", has(Items.TWISTING_VINES)) + .save(exporter); + quickSlabStairsWallRecipe(exporter, + TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICK_SLAB, + TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICK_STAIRS, + TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICK_WALL, + TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICKS + ); + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICKS, 8) + .pattern("###") + .pattern("#W#") + .pattern("###") + .define('#', Blocks.POLISHED_BLACKSTONE_BRICKS) + .define('W', Items.WEEPING_VINES) + .unlockedBy("has_polished_blackstone_bricks", has(Blocks.POLISHED_BLACKSTONE_BRICKS)) + .unlockedBy("has_weeping_vines", has(Items.WEEPING_VINES)) + .save(exporter); + quickSlabStairsWallRecipe(exporter, + TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICK_SLAB, + TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICK_STAIRS, + TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICK_WALL, + TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICKS + ); + } + + private void polishedTuffRecipes(RecipeOutput exporter) { + quickPolishedRecipes(exporter, TwigsBlocks.POLISHED_TUFF, + TwigsBlocks.POLISHED_TUFF_SLAB, TwigsBlocks.POLISHED_TUFF_STAIRS, Blocks.TUFF); + + quickPolishedBrickRecipes(exporter, TwigsBlocks.POLISHED_TUFF_BRICKS, + TwigsBlocks.POLISHED_TUFF_BRICK_SLAB, TwigsBlocks.POLISHED_TUFF_BRICK_STAIRS, TwigsBlocks.POLISHED_TUFF_BRICK_WALL, + TwigsBlocks.POLISHED_TUFF, Blocks.TUFF); + + quickSmeltingRecipe(exporter, TwigsBlocks.CRACKED_POLISHED_TUFF_BRICKS, TwigsBlocks.POLISHED_TUFF_BRICKS); + } + + private void calciteRecipes(RecipeOutput exporter) { + quickSlabStairsWallRecipe(exporter, + TwigsBlocks.CALCITE_SLAB, TwigsBlocks.CALCITE_STAIRS, TwigsBlocks.CALCITE_WALL, Blocks.CALCITE); + + quickPolishedRecipes(exporter, TwigsBlocks.POLISHED_CALCITE, + TwigsBlocks.POLISHED_CALCITE_SLAB, TwigsBlocks.POLISHED_CALCITE_STAIRS, Blocks.CALCITE); + + quickPolishedBrickRecipes(exporter, TwigsBlocks.POLISHED_CALCITE_BRICKS, + TwigsBlocks.POLISHED_CALCITE_BRICK_SLAB, TwigsBlocks.POLISHED_CALCITE_BRICK_STAIRS, TwigsBlocks.POLISHED_CALCITE_BRICK_WALL, + TwigsBlocks.POLISHED_CALCITE, Blocks.CALCITE); + + quickSmeltingRecipe(exporter, TwigsBlocks.CRACKED_POLISHED_CALCITE_BRICKS, TwigsBlocks.POLISHED_CALCITE_BRICKS); + } + + private void schistRecipes(RecipeOutput exporter) { + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.SCHIST, 2) + .pattern("#C") + .pattern("C#") + .define('#', Items.QUARTZ) + .define('C', Items.CLAY_BALL) + .unlockedBy("has_red_sand", has(Blocks.RED_SAND)) + .unlockedBy("has_clay_ball", has(Items.CLAY_BALL)) + .save(exporter); + + quickSlabStairsWallRecipe(exporter, + TwigsBlocks.SCHIST_SLAB, TwigsBlocks.SCHIST_STAIRS, TwigsBlocks.SCHIST_WALL, TwigsBlocks.SCHIST); + + quickPolishedRecipes(exporter, TwigsBlocks.POLISHED_SCHIST, + TwigsBlocks.POLISHED_SCHIST_SLAB, TwigsBlocks.POLISHED_SCHIST_STAIRS, TwigsBlocks.SCHIST); + + quickPolishedBrickRecipes(exporter, TwigsBlocks.POLISHED_SCHIST_BRICKS, + TwigsBlocks.POLISHED_SCHIST_BRICK_SLAB, TwigsBlocks.POLISHED_SCHIST_BRICK_STAIRS, TwigsBlocks.POLISHED_SCHIST_BRICK_WALL, + TwigsBlocks.POLISHED_SCHIST, TwigsBlocks.SCHIST); + + quickSmeltingRecipe(exporter, TwigsBlocks.CRACKED_POLISHED_SCHIST_BRICKS, TwigsBlocks.POLISHED_SCHIST_BRICKS); + } + + private void rhyoliteRecipes(RecipeOutput exporter) { + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.RHYOLITE, 2) + .pattern("#R") + .pattern("R#") + .define('#', Items.QUARTZ) + .define('R', Blocks.RED_SAND) + .unlockedBy("has_quartz", has(Items.QUARTZ)) + .unlockedBy("has_red_sand", has(Blocks.RED_SAND)) + .save(exporter); + + quickSlabStairsWallRecipe(exporter, + TwigsBlocks.RHYOLITE_SLAB, TwigsBlocks.RHYOLITE_STAIRS, TwigsBlocks.RHYOLITE_WALL, TwigsBlocks.RHYOLITE); + + quickPolishedRecipes(exporter, TwigsBlocks.POLISHED_RHYOLITE, + TwigsBlocks.POLISHED_RHYOLITE_SLAB, TwigsBlocks.POLISHED_RHYOLITE_STAIRS, TwigsBlocks.RHYOLITE); + + quickPolishedBrickRecipes(exporter, TwigsBlocks.POLISHED_RHYOLITE_BRICKS, + TwigsBlocks.POLISHED_RHYOLITE_BRICK_SLAB, TwigsBlocks.POLISHED_RHYOLITE_BRICK_STAIRS, TwigsBlocks.POLISHED_RHYOLITE_BRICK_WALL, + TwigsBlocks.POLISHED_RHYOLITE, TwigsBlocks.RHYOLITE); + + quickSmeltingRecipe(exporter, TwigsBlocks.CRACKED_POLISHED_RHYOLITE_BRICKS, TwigsBlocks.POLISHED_RHYOLITE_BRICKS); + } + + private void bloodstoneRecipes(RecipeOutput exporter) { + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.BLOODSTONE, 2) + .pattern("#I") + .pattern("I#") + .define('#', Items.QUARTZ) + .define('I', Items.IRON_NUGGET) + .unlockedBy("has_red_sand", has(Blocks.RED_SAND)) + .unlockedBy("has_iron_nugget", has(Items.IRON_NUGGET)) + .save(exporter); + + quickSlabStairsWallRecipe(exporter, + TwigsBlocks.BLOODSTONE_SLAB, TwigsBlocks.BLOODSTONE_STAIRS, TwigsBlocks.BLOODSTONE_WALL, TwigsBlocks.BLOODSTONE); + + quickPolishedRecipes(exporter, TwigsBlocks.POLISHED_BLOODSTONE, + TwigsBlocks.POLISHED_BLOODSTONE_SLAB, TwigsBlocks.POLISHED_BLOODSTONE_STAIRS, TwigsBlocks.BLOODSTONE); + + quickPolishedBrickRecipes(exporter, TwigsBlocks.POLISHED_BLOODSTONE_BRICKS, + TwigsBlocks.POLISHED_BLOODSTONE_BRICK_SLAB, TwigsBlocks.POLISHED_BLOODSTONE_BRICK_STAIRS, TwigsBlocks.POLISHED_BLOODSTONE_BRICK_WALL, + TwigsBlocks.POLISHED_BLOODSTONE, TwigsBlocks.BLOODSTONE); + + quickSmeltingRecipe(exporter, TwigsBlocks.CRACKED_POLISHED_BLOODSTONE_BRICKS, TwigsBlocks.POLISHED_BLOODSTONE_BRICKS); + } + + private void siltRecipes(RecipeOutput exporter) { + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.SILT, 1) + .pattern("##") + .pattern("##") + .define('#', TwigsItems.SILT_BALL) + .unlockedBy("has_silt_ball", has(TwigsItems.SILT_BALL)) + .unlockedBy("has_silt", has(TwigsItems.SILT)) + .save(exporter, ResourceLocation.fromNamespaceAndPath(MOD_ID, "silt_from_silt_ball")); + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.SILT, 4) + .pattern("DG") + .pattern("GD") + .define('D', Items.SAND) + .define('G', Items.CLAY) + .unlockedBy("has_sand", has(Items.SAND)) + .unlockedBy("has_clay", has(Items.CLAY)) + .unlockedBy("has_silt", has(TwigsBlocks.SILT)) + .save(exporter); + + ShapelessRecipeBuilder.shapeless(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.PACKED_SILT, 4) + .requires(TwigsBlocks.SILT) + .requires(Items.WHEAT) + .unlockedBy("has_wheat", has(Items.WHEAT)) + .unlockedBy("has_silt", has(TwigsBlocks.SILT)) + .unlockedBy("has_packed_silt", has(TwigsBlocks.PACKED_SILT)) + .save(exporter); + + quickPolishedRecipes( + exporter, + TwigsBlocks.SILT_SHINGLES, + TwigsBlocks.SILT_SHINGLE_SLAB, TwigsBlocks.SILT_SHINGLE_STAIRS, TwigsBlocks.SILT_SHINGLE_WALL, + TwigsBlocks.PACKED_SILT + ); + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.SILT_POT, 1) + .pattern("# #") + .pattern("# #") + .pattern("###") + .define('#', TwigsBlocks.SILT_BRICKS) + .unlockedBy("has_packed_silt", has(TwigsBlocks.PACKED_SILT)) + .unlockedBy("has_silt", has(TwigsBlocks.SILT)) + .save(exporter); + + quickSmeltingRecipe(exporter, TwigsItems.SILT_BRICK, TwigsItems.SILT_BALL, .3f); + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.SILT_BRICKS, 1) + .pattern("##") + .pattern("##") + .define('#', TwigsItems.SILT_BRICK) + .unlockedBy("has_silt_brick", has(TwigsItems.SILT_BRICK)) + .unlockedBy("has_silt_bricks", has(TwigsBlocks.SILT_BRICKS)) + .save(exporter); + quickSlabStairsWallRecipe(exporter, TwigsBlocks.SILT_BRICK_SLAB, TwigsBlocks.SILT_BRICK_STAIRS, TwigsBlocks.SILT_BRICK_WALL, + TwigsBlocks.SILT_BRICKS); + + quickSmeltingRecipe(exporter, TwigsBlocks.CRACKED_SILT_BRICKS, TwigsBlocks.SILT_BRICKS); + + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, TwigsBlocks.CHISELED_SILT_BRICKS, 1) + .pattern("#") + .pattern("#") + .define('#', TwigsBlocks.SILT_BRICK_SLAB) + .unlockedBy("has_silt_brick_slab", has(TwigsBlocks.SILT_BRICK_SLAB)) + .unlockedBy("has_chiseled_silt_bricks", has(TwigsBlocks.CHISELED_SILT_BRICKS)) + .save(exporter); + + quickStonecuttingRecipe(exporter, TwigsBlocks.CHISELED_SILT_BRICKS, TwigsBlocks.SILT_BRICKS, 1); + + quick2x2Recipe(exporter, TwigsBlocks.MIXED_SILT_BRICKS, TwigsBlocks.SILT_BRICKS); + quickStonecuttingRecipe(exporter, TwigsBlocks.MIXED_SILT_BRICKS, TwigsBlocks.SILT_BRICKS, 1); + + quickTrailRecipe(exporter, TwigsBlocks.SILT_BRICK_TRAIL, TwigsBlocks.SILT_BRICKS); + quickStonecuttingRecipe(exporter, TwigsBlocks.SILT_BRICK_TRAIL, TwigsBlocks.SILT_BRICKS, 2); + } + + private void coloredSiltRecipes(RecipeOutput exporter) { + quickColoredSiltRecipes(exporter, + Items.WHITE_DYE, TwigsBlocks.WHITE_PACKED_SILT, + TwigsBlocks.WHITE_SILT_SHINGLES, TwigsBlocks.WHITE_SILT_SHINGLE_STAIRS, TwigsBlocks.WHITE_SILT_SHINGLE_SLAB, TwigsBlocks.WHITE_SILT_SHINGLE_WALL, + TwigsBlocks.WHITE_SILT_POT + ); + quickColoredSiltRecipes(exporter, + Items.ORANGE_DYE, TwigsBlocks.ORANGE_PACKED_SILT, + TwigsBlocks.ORANGE_SILT_SHINGLES, TwigsBlocks.ORANGE_SILT_SHINGLE_STAIRS, TwigsBlocks.ORANGE_SILT_SHINGLE_SLAB, TwigsBlocks.ORANGE_SILT_SHINGLE_WALL, + TwigsBlocks.ORANGE_SILT_POT + ); + quickColoredSiltRecipes(exporter, + Items.MAGENTA_DYE, TwigsBlocks.MAGENTA_PACKED_SILT, + TwigsBlocks.MAGENTA_SILT_SHINGLES, TwigsBlocks.MAGENTA_SILT_SHINGLE_STAIRS, TwigsBlocks.MAGENTA_SILT_SHINGLE_SLAB, TwigsBlocks.MAGENTA_SILT_SHINGLE_WALL, + TwigsBlocks.MAGENTA_SILT_POT + ); + quickColoredSiltRecipes(exporter, + Items.LIGHT_BLUE_DYE, TwigsBlocks.LIGHT_BLUE_PACKED_SILT, + TwigsBlocks.LIGHT_BLUE_SILT_SHINGLES, TwigsBlocks.LIGHT_BLUE_SILT_SHINGLE_STAIRS, TwigsBlocks.LIGHT_BLUE_SILT_SHINGLE_SLAB, TwigsBlocks.LIGHT_BLUE_SILT_SHINGLE_WALL, + TwigsBlocks.LIGHT_BLUE_SILT_POT + ); + quickColoredSiltRecipes(exporter, + Items.YELLOW_DYE, TwigsBlocks.YELLOW_PACKED_SILT, + TwigsBlocks.YELLOW_SILT_SHINGLES, TwigsBlocks.YELLOW_SILT_SHINGLE_STAIRS, TwigsBlocks.YELLOW_SILT_SHINGLE_SLAB, TwigsBlocks.YELLOW_SILT_SHINGLE_WALL, + TwigsBlocks.YELLOW_SILT_POT + ); + quickColoredSiltRecipes(exporter, + Items.LIME_DYE, TwigsBlocks.LIME_PACKED_SILT, + TwigsBlocks.LIME_SILT_SHINGLES, TwigsBlocks.LIME_SILT_SHINGLE_STAIRS, TwigsBlocks.LIME_SILT_SHINGLE_SLAB, TwigsBlocks.LIME_SILT_SHINGLE_WALL, + TwigsBlocks.LIME_SILT_POT + ); + quickColoredSiltRecipes(exporter, + Items.PINK_DYE, TwigsBlocks.PINK_PACKED_SILT, + TwigsBlocks.PINK_SILT_SHINGLES, TwigsBlocks.PINK_SILT_SHINGLE_STAIRS, TwigsBlocks.PINK_SILT_SHINGLE_SLAB, TwigsBlocks.PINK_SILT_SHINGLE_WALL, + TwigsBlocks.PINK_SILT_POT + ); + quickColoredSiltRecipes(exporter, + Items.GRAY_DYE, TwigsBlocks.GRAY_PACKED_SILT, + TwigsBlocks.GRAY_SILT_SHINGLES, TwigsBlocks.GRAY_SILT_SHINGLE_STAIRS, TwigsBlocks.GRAY_SILT_SHINGLE_SLAB, TwigsBlocks.GRAY_SILT_SHINGLE_WALL, + TwigsBlocks.GRAY_SILT_POT + ); + quickColoredSiltRecipes(exporter, + Items.LIGHT_GRAY_DYE, TwigsBlocks.LIGHT_GRAY_PACKED_SILT, + TwigsBlocks.LIGHT_GRAY_SILT_SHINGLES, TwigsBlocks.LIGHT_GRAY_SILT_SHINGLE_STAIRS, TwigsBlocks.LIGHT_GRAY_SILT_SHINGLE_SLAB, TwigsBlocks.LIGHT_GRAY_SILT_SHINGLE_WALL, + TwigsBlocks.LIGHT_GRAY_SILT_POT + ); + quickColoredSiltRecipes(exporter, + Items.CYAN_DYE, TwigsBlocks.CYAN_PACKED_SILT, + TwigsBlocks.CYAN_SILT_SHINGLES, TwigsBlocks.CYAN_SILT_SHINGLE_STAIRS, TwigsBlocks.CYAN_SILT_SHINGLE_SLAB, TwigsBlocks.CYAN_SILT_SHINGLE_WALL, + TwigsBlocks.CYAN_SILT_POT + ); + quickColoredSiltRecipes(exporter, + Items.PURPLE_DYE, TwigsBlocks.PURPLE_PACKED_SILT, + TwigsBlocks.PURPLE_SILT_SHINGLES, TwigsBlocks.PURPLE_SILT_SHINGLE_STAIRS, TwigsBlocks.PURPLE_SILT_SHINGLE_SLAB, TwigsBlocks.PURPLE_SILT_SHINGLE_WALL, + TwigsBlocks.PURPLE_SILT_POT + ); + quickColoredSiltRecipes(exporter, + Items.BLUE_DYE, TwigsBlocks.BLUE_PACKED_SILT, + TwigsBlocks.BLUE_SILT_SHINGLES, TwigsBlocks.BLUE_SILT_SHINGLE_STAIRS, TwigsBlocks.BLUE_SILT_SHINGLE_SLAB, TwigsBlocks.BLUE_SILT_SHINGLE_WALL, + TwigsBlocks.BLUE_SILT_POT + ); + quickColoredSiltRecipes(exporter, + Items.BROWN_DYE, TwigsBlocks.BROWN_PACKED_SILT, + TwigsBlocks.BROWN_SILT_SHINGLES, TwigsBlocks.BROWN_SILT_SHINGLE_STAIRS, TwigsBlocks.BROWN_SILT_SHINGLE_SLAB, TwigsBlocks.BROWN_SILT_SHINGLE_WALL, + TwigsBlocks.BROWN_SILT_POT + ); + quickColoredSiltRecipes(exporter, + Items.GREEN_DYE, TwigsBlocks.GREEN_PACKED_SILT, + TwigsBlocks.GREEN_SILT_SHINGLES, TwigsBlocks.GREEN_SILT_SHINGLE_STAIRS, TwigsBlocks.GREEN_SILT_SHINGLE_SLAB, TwigsBlocks.GREEN_SILT_SHINGLE_WALL, + TwigsBlocks.GREEN_SILT_POT + ); + quickColoredSiltRecipes(exporter, + Items.RED_DYE, TwigsBlocks.RED_PACKED_SILT, + TwigsBlocks.RED_SILT_SHINGLES, TwigsBlocks.RED_SILT_SHINGLE_STAIRS, TwigsBlocks.RED_SILT_SHINGLE_SLAB, TwigsBlocks.RED_SILT_SHINGLE_WALL, + TwigsBlocks.RED_SILT_POT + ); + quickColoredSiltRecipes(exporter, + Items.BLACK_DYE, TwigsBlocks.BLACK_PACKED_SILT, + TwigsBlocks.BLACK_SILT_SHINGLES, TwigsBlocks.BLACK_SILT_SHINGLE_STAIRS, TwigsBlocks.BLACK_SILT_SHINGLE_SLAB, TwigsBlocks.BLACK_SILT_SHINGLE_WALL, + TwigsBlocks.BLACK_SILT_POT + ); + } + +} diff --git a/src/main/java/com/ninni/twigs/data/tags/TwigsBiomeTagProvider.java b/src/main/java/com/ninni/twigs/data/tags/TwigsBiomeTagProvider.java new file mode 100644 index 00000000..64303d6e --- /dev/null +++ b/src/main/java/com/ninni/twigs/data/tags/TwigsBiomeTagProvider.java @@ -0,0 +1,70 @@ +package com.ninni.twigs.data.tags; + +import com.ninni.twigs.TwigsTags; +import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; +import net.fabricmc.fabric.api.datagen.v1.provider.FabricTagProvider; +import net.fabricmc.fabric.api.tag.convention.v2.ConventionalBiomeTags; +import net.minecraft.core.HolderLookup; +import net.minecraft.core.registries.Registries; +import net.minecraft.tags.BiomeTags; +import net.minecraft.world.level.biome.Biome; +import net.minecraft.world.level.biome.Biomes; + +import java.util.concurrent.CompletableFuture; + +public class TwigsBiomeTagProvider extends FabricTagProvider { + + public TwigsBiomeTagProvider(FabricDataOutput output, CompletableFuture completableFuture) { + super(output, Registries.BIOME,completableFuture); + } + + @Override + protected void addTags(HolderLookup.Provider wrapperLookup) { + getOrCreateTagBuilder(TwigsTags.AZALEA_FLOWERS_GENERATE) + .add(Biomes.LUSH_CAVES); + + getOrCreateTagBuilder(TwigsTags.BLOODSTONE_GENERATES) + .add(Biomes.CRIMSON_FOREST) + .add(Biomes.WARPED_FOREST) + .add(Biomes.BASALT_DELTAS); + + getOrCreateTagBuilder(TwigsTags.SCHIST_GENERATES) + .forceAddTag(ConventionalBiomeTags.IS_MOUNTAIN); + + getOrCreateTagBuilder(TwigsTags.SILT_GENERATES) + .add(Biomes.NETHER_WASTES) + .add(Biomes.SOUL_SAND_VALLEY); + + getOrCreateTagBuilder(TwigsTags.SPAWNS_PEBBLE) + .forceAddTag(BiomeTags.IS_RIVER) + .forceAddTag(BiomeTags.IS_SAVANNA) + .forceAddTag(BiomeTags.IS_TAIGA) + .forceAddTag(BiomeTags.IS_BEACH) + .add(Biomes.PLAINS) + .add(Biomes.SUNFLOWER_PLAINS) + .add(Biomes.MEADOW) + .add(Biomes.MUSHROOM_FIELDS) + .add(Biomes.WINDSWEPT_FOREST) + .add(Biomes.WINDSWEPT_HILLS) + .add(Biomes.WINDSWEPT_GRAVELLY_HILLS) + .add(Biomes.STONY_SHORE) + .add(Biomes.SWAMP); + + getOrCreateTagBuilder(TwigsTags.SPAWNS_SEA_SHELL) + .forceAddTag(BiomeTags.IS_DEEP_OCEAN) + .forceAddTag(BiomeTags.IS_OCEAN) + .forceAddTag(BiomeTags.IS_BEACH) + .forceAddTag(BiomeTags.IS_RIVER) + .add(Biomes.STONY_SHORE); + + + getOrCreateTagBuilder(TwigsTags.SPAWNS_TWIG) + .forceAddTag(BiomeTags.IS_FOREST) + .forceAddTag(BiomeTags.IS_TAIGA) + .add(Biomes.SWAMP); + + getOrCreateTagBuilder(TwigsTags.HAS_STRUCTURE_BLOODSTONE_OBELISK) + .add(Biomes.NETHER_WASTES) + .add(Biomes.CRIMSON_FOREST); + } +} diff --git a/src/main/java/com/ninni/twigs/data/tags/TwigsBlockTagProvider.java b/src/main/java/com/ninni/twigs/data/tags/TwigsBlockTagProvider.java new file mode 100644 index 00000000..7c85a373 --- /dev/null +++ b/src/main/java/com/ninni/twigs/data/tags/TwigsBlockTagProvider.java @@ -0,0 +1,344 @@ +package com.ninni.twigs.data.tags; + +import com.ninni.twigs.TwigsTags; +import com.ninni.twigs.data.TwigsDataGenerator; +import com.ninni.twigs.registry.TwigsBlocks; +import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; +import net.fabricmc.fabric.api.datagen.v1.provider.FabricTagProvider; +import net.minecraft.core.HolderLookup; +import net.minecraft.core.registries.BuiltInRegistries; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.tags.BlockTags; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.SlabBlock; +import net.minecraft.world.level.block.StairBlock; +import net.minecraft.world.level.block.WallBlock; + +import java.util.List; +import java.util.concurrent.CompletableFuture; + +public class TwigsBlockTagProvider extends FabricTagProvider.BlockTagProvider { + public TwigsBlockTagProvider(FabricDataOutput output, CompletableFuture registriesFuture) { + super(output, registriesFuture); + } + + @Override + protected void addTags(HolderLookup.Provider provider) { + flowerTags(); + microBlockTags(); + mineableTags(); + modTags(); + + + getOrCreateTagBuilder(BlockTags.CRYSTAL_SOUND_BLOCKS) + .add(TwigsBlocks.POLISHED_AMETHYST) + .add(TwigsBlocks.CUT_AMETHYST); + getOrCreateTagBuilder(BlockTags.INSIDE_STEP_SOUND_BLOCKS) + .add(TwigsBlocks.PETRIFIED_LICHEN) + .add(TwigsBlocks.BRICK_TRAIL) + .add(TwigsBlocks.SILT_BRICK_TRAIL) + .add(TwigsBlocks.AZALEA_FLOWERS); + getOrCreateTagBuilder(BlockTags.PIGLIN_REPELLENTS) + .add(TwigsBlocks.SOUL_LAMP); + } + + private void flowerTags() { + getOrCreateTagBuilder(BlockTags.SMALL_FLOWERS) + .add(TwigsBlocks.AZALEA_FLOWERS); + + getOrCreateTagBuilder(BlockTags.FLOWER_POTS) + .add(TwigsBlocks.POTTED_AZALEA_FLOWERS); + + // (ender) replaceable_plants got replaced by replaceable_by_trees in 1.20, + // but I feel like these 2 items should also be in replaceable + // also replaceable is referenced in enchantment_power_transmitter + + getOrCreateTagBuilder(BlockTags.REPLACEABLE) + .add(TwigsBlocks.AZALEA_FLOWERS) + .add(TwigsBlocks.PETRIFIED_LICHEN); + + getOrCreateTagBuilder(BlockTags.REPLACEABLE_BY_TREES) + .add(TwigsBlocks.AZALEA_FLOWERS) + .add(TwigsBlocks.PETRIFIED_LICHEN); + } + + private void microBlockTags() { + var stairsTag = getOrCreateTagBuilder(BlockTags.STAIRS); + var slabTag = getOrCreateTagBuilder(BlockTags.SLABS); + var wallTag = getOrCreateTagBuilder(BlockTags.WALLS); + for (Block block : TwigsDataGenerator.getModBlocks()) { + if (block instanceof StairBlock) stairsTag.add(block); + else if (block instanceof SlabBlock) slabTag.add(block); + else if (block instanceof WallBlock) wallTag.add(block); + } + } + + private void mineableTags() { + getOrCreateTagBuilder(BlockTags.MINEABLE_WITH_AXE) + .forceAddTag(TwigsTags.TABLES_BLOCK) + .add(TwigsBlocks.CRIMSON_SHROOMLAMP) + .add(TwigsBlocks.WARPED_SHROOMLAMP); + + getOrCreateTagBuilder(BlockTags.MINEABLE_WITH_SHOVEL) + .add(TwigsBlocks.ROCKY_DIRT) + .add(TwigsBlocks.SILT); + + getOrCreateTagBuilder(BlockTags.MINEABLE_WITH_PICKAXE) + .add(TwigsBlocks.LAMP) + .add(TwigsBlocks.SOUL_LAMP) + .add(TwigsBlocks.POLISHED_BASALT_BRICKS) + .add(TwigsBlocks.CHISELED_SMOOTH_BASALT_BRICKS) + .add(TwigsBlocks.SMOOTH_BASALT_BRICKS) + .add(TwigsBlocks.SMOOTH_BASALT_BRICK_STAIRS) + .add(TwigsBlocks.SMOOTH_BASALT_BRICK_SLAB) + .add(TwigsBlocks.SMOOTH_BASALT_BRICK_WALL) + .add(TwigsBlocks.MIXED_BRICKS) + .add(TwigsBlocks.CHISELED_BRICKS) + .add(TwigsBlocks.CRACKED_BRICKS) + .add(TwigsBlocks.MOSSY_BRICKS) + .add(TwigsBlocks.MOSSY_BRICK_STAIRS) + .add(TwigsBlocks.MOSSY_BRICK_SLAB) + .add(TwigsBlocks.MOSSY_BRICK_WALL) + .add(TwigsBlocks.POLISHED_AMETHYST) + .add(TwigsBlocks.CUT_AMETHYST) + .add(TwigsBlocks.COBBLESTONE_BRICKS) + .add(TwigsBlocks.COBBLESTONE_BRICK_SLAB) + .add(TwigsBlocks.COBBLESTONE_BRICK_STAIRS) + .add(TwigsBlocks.COBBLESTONE_BRICK_WALL) + .add(TwigsBlocks.CRACKED_COBBLESTONE_BRICKS) + .add(TwigsBlocks.MOSSY_COBBLESTONE_BRICKS) + .add(TwigsBlocks.MOSSY_COBBLESTONE_BRICK_SLAB) + .add(TwigsBlocks.MOSSY_COBBLESTONE_BRICK_STAIRS) + .add(TwigsBlocks.MOSSY_COBBLESTONE_BRICK_WALL) + .add(TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICKS) + .add(TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICK_SLAB) + .add(TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICK_STAIRS) + .add(TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICK_WALL) + .add(TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICKS) + .add(TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICK_STAIRS) + .add(TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICK_SLAB) + .add(TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICK_WALL) + .add(TwigsBlocks.POLISHED_TUFF) + .add(TwigsBlocks.POLISHED_TUFF_STAIRS) + .add(TwigsBlocks.POLISHED_TUFF_SLAB) + .add(TwigsBlocks.POLISHED_TUFF_BRICKS) + .add(TwigsBlocks.POLISHED_TUFF_BRICK_STAIRS) + .add(TwigsBlocks.POLISHED_TUFF_BRICK_SLAB) + .add(TwigsBlocks.POLISHED_TUFF_BRICK_WALL) + .add(TwigsBlocks.CRACKED_POLISHED_TUFF_BRICKS) + .add(TwigsBlocks.CALCITE_STAIRS) + .add(TwigsBlocks.CALCITE_SLAB) + .add(TwigsBlocks.CALCITE_WALL) + .add(TwigsBlocks.POLISHED_CALCITE) + .add(TwigsBlocks.POLISHED_CALCITE_STAIRS) + .add(TwigsBlocks.POLISHED_CALCITE_SLAB) + .add(TwigsBlocks.POLISHED_CALCITE_BRICKS) + .add(TwigsBlocks.POLISHED_CALCITE_BRICK_STAIRS) + .add(TwigsBlocks.POLISHED_CALCITE_BRICK_SLAB) + .add(TwigsBlocks.POLISHED_CALCITE_BRICK_WALL) + .add(TwigsBlocks.CRACKED_POLISHED_CALCITE_BRICKS) + .forceAddTag(TwigsTags.SCHIST_BLOCK) + .forceAddTag(TwigsTags.RHYOLITE_BLOCK) + .forceAddTag(TwigsTags.BLOODSTONE_BLOCK) + .add(TwigsBlocks.ROCKY_DIRT) + .forceAddTag(TwigsTags.PACKED_SILT_BLOCK) + .forceAddTag(TwigsTags.SILT_POTS_BLOCK) + .add(TwigsBlocks.GRAVEL_BRICKS) + .add(TwigsBlocks.GRAVEL_BRICK_STAIRS) + .add(TwigsBlocks.GRAVEL_BRICK_SLAB) + .add(TwigsBlocks.GRAVEL_BRICK_WALL) + .add(TwigsBlocks.SILT_BRICKS) + .add(TwigsBlocks.SILT_BRICK_STAIRS) + .add(TwigsBlocks.SILT_BRICK_SLAB) + .add(TwigsBlocks.SILT_BRICK_WALL) + .add(TwigsBlocks.MIXED_SILT_BRICKS) + .add(TwigsBlocks.CHISELED_SILT_BRICKS) + .add(TwigsBlocks.CRACKED_SILT_BRICKS) + .add(TwigsBlocks.COMPACTED_DRIPSTONE) + .add(TwigsBlocks.SMOOTH_STONE_BRICKS) + .add(TwigsBlocks.SMOOTH_STONE_BRICK_STAIRS) + .add(TwigsBlocks.SMOOTH_STONE_BRICK_SLAB) + .add(TwigsBlocks.SMOOTH_STONE_BRICK_WALL) + .add(TwigsBlocks.QUARTZ_COLUMN) + .add(TwigsBlocks.STONE_COLUMN) + .add(TwigsBlocks.DEEPSLATE_COLUMN) + .add(TwigsBlocks.BLACKSTONE_COLUMN) + .add(TwigsBlocks.PETRIFIED_LICHEN) + .add(TwigsBlocks.COPPER_PILLAR) + .add(TwigsBlocks.EXPOSED_COPPER_PILLAR) + .add(TwigsBlocks.WEATHERED_COPPER_PILLAR) + .add(TwigsBlocks.OXIDIZED_COPPER_PILLAR) + .add(TwigsBlocks.WAXED_COPPER_PILLAR) + .add(TwigsBlocks.WAXED_EXPOSED_COPPER_PILLAR) + .add(TwigsBlocks.WAXED_WEATHERED_COPPER_PILLAR) + .add(TwigsBlocks.WAXED_OXIDIZED_COPPER_PILLAR); + } + + + private void modTags() { + getOrCreateTagBuilder(TwigsTags.BLOODSTONE_BLOCK) + .add(TwigsBlocks.BLOODSTONE) + .add(TwigsBlocks.BLOODSTONE_STAIRS) + .add(TwigsBlocks.BLOODSTONE_SLAB) + .add(TwigsBlocks.BLOODSTONE_WALL) + .add(TwigsBlocks.POLISHED_BLOODSTONE) + .add(TwigsBlocks.POLISHED_BLOODSTONE_STAIRS) + .add(TwigsBlocks.POLISHED_BLOODSTONE_SLAB) + .add(TwigsBlocks.POLISHED_BLOODSTONE_BRICKS) + .add(TwigsBlocks.POLISHED_BLOODSTONE_BRICK_STAIRS) + .add(TwigsBlocks.POLISHED_BLOODSTONE_BRICK_SLAB) + .add(TwigsBlocks.POLISHED_BLOODSTONE_BRICK_WALL) + .add(TwigsBlocks.CRACKED_POLISHED_BLOODSTONE_BRICKS); + + getOrCreateTagBuilder(TwigsTags.OFFSET_REMOVER) + .forceAddTag(TwigsTags.SILT_POTS_BLOCK); + + getOrCreateTagBuilder(TwigsTags.PACKED_SILT_BLOCK) + .add(TwigsBlocks.PACKED_SILT) + .add(TwigsBlocks.WHITE_PACKED_SILT) + .add(TwigsBlocks.ORANGE_PACKED_SILT) + .add(TwigsBlocks.MAGENTA_PACKED_SILT) + .add(TwigsBlocks.LIGHT_BLUE_PACKED_SILT) + .add(TwigsBlocks.YELLOW_PACKED_SILT) + .add(TwigsBlocks.LIME_PACKED_SILT) + .add(TwigsBlocks.PINK_PACKED_SILT) + .add(TwigsBlocks.GRAY_PACKED_SILT) + .add(TwigsBlocks.LIGHT_GRAY_PACKED_SILT) + .add(TwigsBlocks.CYAN_PACKED_SILT) + .add(TwigsBlocks.PURPLE_PACKED_SILT) + .add(TwigsBlocks.BLUE_PACKED_SILT) + .add(TwigsBlocks.BROWN_PACKED_SILT) + .add(TwigsBlocks.GREEN_PACKED_SILT) + .add(TwigsBlocks.RED_PACKED_SILT) + .add(TwigsBlocks.BLACK_PACKED_SILT) + .add(TwigsBlocks.SILT_SHINGLES) + .add(TwigsBlocks.WHITE_SILT_SHINGLES) + .add(TwigsBlocks.ORANGE_SILT_SHINGLES) + .add(TwigsBlocks.MAGENTA_SILT_SHINGLES) + .add(TwigsBlocks.LIGHT_BLUE_SILT_SHINGLES) + .add(TwigsBlocks.YELLOW_SILT_SHINGLES) + .add(TwigsBlocks.LIME_SILT_SHINGLES) + .add(TwigsBlocks.PINK_SILT_SHINGLES) + .add(TwigsBlocks.GRAY_SILT_SHINGLES) + .add(TwigsBlocks.LIGHT_GRAY_SILT_SHINGLES) + .add(TwigsBlocks.CYAN_SILT_SHINGLES) + .add(TwigsBlocks.PURPLE_SILT_SHINGLES) + .add(TwigsBlocks.BLUE_SILT_SHINGLES) + .add(TwigsBlocks.BROWN_SILT_SHINGLES) + .add(TwigsBlocks.GREEN_SILT_SHINGLES) + .add(TwigsBlocks.RED_SILT_SHINGLES) + .add(TwigsBlocks.BLACK_SILT_SHINGLES) + .add(TwigsBlocks.SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.WHITE_SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.ORANGE_SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.MAGENTA_SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.LIGHT_BLUE_SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.YELLOW_SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.LIME_SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.PINK_SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.GRAY_SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.LIGHT_GRAY_SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.CYAN_SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.PURPLE_SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.BLUE_SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.BROWN_SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.GREEN_SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.RED_SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.BLACK_SILT_SHINGLE_STAIRS) + .add(TwigsBlocks.SILT_SHINGLE_SLAB) + .add(TwigsBlocks.WHITE_SILT_SHINGLE_SLAB) + .add(TwigsBlocks.ORANGE_SILT_SHINGLE_SLAB) + .add(TwigsBlocks.MAGENTA_SILT_SHINGLE_SLAB) + .add(TwigsBlocks.LIGHT_BLUE_SILT_SHINGLE_SLAB) + .add(TwigsBlocks.YELLOW_SILT_SHINGLE_SLAB) + .add(TwigsBlocks.LIME_SILT_SHINGLE_SLAB) + .add(TwigsBlocks.PINK_SILT_SHINGLE_SLAB) + .add(TwigsBlocks.GRAY_SILT_SHINGLE_SLAB) + .add(TwigsBlocks.LIGHT_GRAY_SILT_SHINGLE_SLAB) + .add(TwigsBlocks.CYAN_SILT_SHINGLE_SLAB) + .add(TwigsBlocks.PURPLE_SILT_SHINGLE_SLAB) + .add(TwigsBlocks.BLUE_SILT_SHINGLE_SLAB) + .add(TwigsBlocks.BROWN_SILT_SHINGLE_SLAB) + .add(TwigsBlocks.GREEN_SILT_SHINGLE_SLAB) + .add(TwigsBlocks.RED_SILT_SHINGLE_SLAB) + .add(TwigsBlocks.BLACK_SILT_SHINGLE_SLAB) + .add(TwigsBlocks.SILT_SHINGLE_WALL) + .add(TwigsBlocks.WHITE_SILT_SHINGLE_WALL) + .add(TwigsBlocks.ORANGE_SILT_SHINGLE_WALL) + .add(TwigsBlocks.MAGENTA_SILT_SHINGLE_WALL) + .add(TwigsBlocks.LIGHT_BLUE_SILT_SHINGLE_WALL) + .add(TwigsBlocks.YELLOW_SILT_SHINGLE_WALL) + .add(TwigsBlocks.LIME_SILT_SHINGLE_WALL) + .add(TwigsBlocks.PINK_SILT_SHINGLE_WALL) + .add(TwigsBlocks.GRAY_SILT_SHINGLE_WALL) + .add(TwigsBlocks.LIGHT_GRAY_SILT_SHINGLE_WALL) + .add(TwigsBlocks.CYAN_SILT_SHINGLE_WALL) + .add(TwigsBlocks.PURPLE_SILT_SHINGLE_WALL) + .add(TwigsBlocks.BLUE_SILT_SHINGLE_WALL) + .add(TwigsBlocks.BROWN_SILT_SHINGLE_WALL) + .add(TwigsBlocks.GREEN_SILT_SHINGLE_WALL) + .add(TwigsBlocks.RED_SILT_SHINGLE_WALL) + .add(TwigsBlocks.BLACK_SILT_SHINGLE_WALL); + + getOrCreateTagBuilder(TwigsTags.RHYOLITE_BLOCK) + .add(TwigsBlocks.RHYOLITE) + .add(TwigsBlocks.RHYOLITE_STAIRS) + .add(TwigsBlocks.RHYOLITE_SLAB) + .add(TwigsBlocks.RHYOLITE_WALL) + .add(TwigsBlocks.POLISHED_RHYOLITE) + .add(TwigsBlocks.POLISHED_RHYOLITE_STAIRS) + .add(TwigsBlocks.POLISHED_RHYOLITE_SLAB) + .add(TwigsBlocks.POLISHED_RHYOLITE_BRICKS) + .add(TwigsBlocks.POLISHED_RHYOLITE_BRICK_STAIRS) + .add(TwigsBlocks.POLISHED_RHYOLITE_BRICK_SLAB) + .add(TwigsBlocks.POLISHED_RHYOLITE_BRICK_WALL) + .add(TwigsBlocks.CRACKED_POLISHED_RHYOLITE_BRICKS); + + getOrCreateTagBuilder(TwigsTags.SCHIST_BLOCK) + .add(TwigsBlocks.SCHIST) + .add(TwigsBlocks.SCHIST_STAIRS) + .add(TwigsBlocks.SCHIST_SLAB) + .add(TwigsBlocks.SCHIST_WALL) + .add(TwigsBlocks.POLISHED_SCHIST) + .add(TwigsBlocks.POLISHED_SCHIST_STAIRS) + .add(TwigsBlocks.POLISHED_SCHIST_SLAB) + .add(TwigsBlocks.POLISHED_SCHIST_BRICKS) + .add(TwigsBlocks.POLISHED_SCHIST_BRICK_STAIRS) + .add(TwigsBlocks.POLISHED_SCHIST_BRICK_SLAB) + .add(TwigsBlocks.POLISHED_SCHIST_BRICK_WALL) + .add(TwigsBlocks.CRACKED_POLISHED_SCHIST_BRICKS); + + getOrCreateTagBuilder(TwigsTags.SILT_POTS_BLOCK) + .add(TwigsBlocks.SILT_POT) + .add(TwigsBlocks.WHITE_SILT_POT) + .add(TwigsBlocks.ORANGE_SILT_POT) + .add(TwigsBlocks.MAGENTA_SILT_POT) + .add(TwigsBlocks.LIGHT_BLUE_SILT_POT) + .add(TwigsBlocks.YELLOW_SILT_POT) + .add(TwigsBlocks.LIME_SILT_POT) + .add(TwigsBlocks.PINK_SILT_POT) + .add(TwigsBlocks.GRAY_SILT_POT) + .add(TwigsBlocks.LIGHT_GRAY_SILT_POT) + .add(TwigsBlocks.CYAN_SILT_POT) + .add(TwigsBlocks.PURPLE_SILT_POT) + .add(TwigsBlocks.BLUE_SILT_POT) + .add(TwigsBlocks.BROWN_SILT_POT) + .add(TwigsBlocks.GREEN_SILT_POT) + .add(TwigsBlocks.RED_SILT_POT) + .add(TwigsBlocks.BLACK_SILT_POT); + + getOrCreateTagBuilder(TwigsTags.TABLES_BLOCK) + .add(TwigsBlocks.OAK_TABLE) + .add(TwigsBlocks.SPRUCE_TABLE) + .add(TwigsBlocks.BIRCH_TABLE) + .add(TwigsBlocks.JUNGLE_TABLE) + .add(TwigsBlocks.DARK_OAK_TABLE) + .add(TwigsBlocks.ACACIA_TABLE) + .add(TwigsBlocks.CHERRY_TABLE) + .add(TwigsBlocks.MANGROVE_TABLE) + .add(TwigsBlocks.BAMBOO_TABLE) + .add(TwigsBlocks.CRIMSON_TABLE) + .add(TwigsBlocks.WARPED_TABLE); + } + +} diff --git a/src/main/java/com/ninni/twigs/data/tags/TwigsEntityTypeTagProvider.java b/src/main/java/com/ninni/twigs/data/tags/TwigsEntityTypeTagProvider.java new file mode 100644 index 00000000..d483cd7e --- /dev/null +++ b/src/main/java/com/ninni/twigs/data/tags/TwigsEntityTypeTagProvider.java @@ -0,0 +1,22 @@ +package com.ninni.twigs.data.tags; + +import com.ninni.twigs.TwigsTags; +import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; +import net.fabricmc.fabric.api.datagen.v1.provider.FabricTagProvider; +import net.minecraft.core.HolderLookup; +import net.minecraft.world.entity.EntityType; + +import java.util.concurrent.CompletableFuture; + +public class TwigsEntityTypeTagProvider extends FabricTagProvider.EntityTypeTagProvider { + + public TwigsEntityTypeTagProvider(FabricDataOutput output, CompletableFuture completableFuture) { + super(output, completableFuture); + } + + @Override + protected void addTags(HolderLookup.Provider wrapperLookup) { + getOrCreateTagBuilder(TwigsTags.BAMBOO_LEAVES_SLOW_IMMUNE) + .add(EntityType.PANDA, EntityType.BEE, EntityType.PARROT, EntityType.OCELOT); + } +} diff --git a/src/main/java/com/ninni/twigs/data/tags/TwigsItemTagProvider.java b/src/main/java/com/ninni/twigs/data/tags/TwigsItemTagProvider.java new file mode 100644 index 00000000..a271285c --- /dev/null +++ b/src/main/java/com/ninni/twigs/data/tags/TwigsItemTagProvider.java @@ -0,0 +1,64 @@ +package com.ninni.twigs.data.tags; + +import com.ninni.twigs.TwigsTags; +import com.ninni.twigs.registry.TwigsItems; +import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; +import net.fabricmc.fabric.api.datagen.v1.provider.FabricTagProvider; +import net.minecraft.core.HolderLookup; +import net.minecraft.tags.BlockTags; +import net.minecraft.tags.ItemTags; +import org.jetbrains.annotations.Nullable; + +import java.util.concurrent.CompletableFuture; + +public class TwigsItemTagProvider extends FabricTagProvider.ItemTagProvider { + public TwigsItemTagProvider(FabricDataOutput output, CompletableFuture completableFuture, @Nullable FabricTagProvider.BlockTagProvider blockTagProvider) { + super(output, completableFuture, blockTagProvider); + } + + @Override + protected void addTags(HolderLookup.Provider wrapperLookup) { + copyBlockTags(); + getOrCreateTagBuilder(TwigsTags.PACKED_SILT_FULL_BLOCKS) + .add(TwigsItems.PACKED_SILT) + .add(TwigsItems.WHITE_PACKED_SILT) + .add(TwigsItems.ORANGE_PACKED_SILT) + .add(TwigsItems.MAGENTA_PACKED_SILT) + .add(TwigsItems.LIGHT_BLUE_PACKED_SILT) + .add(TwigsItems.YELLOW_PACKED_SILT) + .add(TwigsItems.LIME_PACKED_SILT) + .add(TwigsItems.PINK_PACKED_SILT) + .add(TwigsItems.GRAY_PACKED_SILT) + .add(TwigsItems.LIGHT_GRAY_PACKED_SILT) + .add(TwigsItems.CYAN_PACKED_SILT) + .add(TwigsItems.PURPLE_PACKED_SILT) + .add(TwigsItems.BLUE_PACKED_SILT) + .add(TwigsItems.BROWN_PACKED_SILT) + .add(TwigsItems.GREEN_PACKED_SILT) + .add(TwigsItems.RED_PACKED_SILT) + .add(TwigsItems.BLACK_PACKED_SILT); + + getOrCreateTagBuilder(TwigsTags.SEASHELLS) + .add(TwigsItems.BRONZED_SEASHELL) + .add(TwigsItems.OPALINE_SEASHELL) + .add(TwigsItems.ROSEATE_SEASHELL) + .add(TwigsItems.TANGERINE_SEASHELL); + } + + private void copyBlockTags() { + // vanilla tags + copy(BlockTags.PIGLIN_REPELLENTS, ItemTags.PIGLIN_REPELLENTS); + copy(BlockTags.SMALL_FLOWERS, ItemTags.SMALL_FLOWERS); + copy(BlockTags.SLABS, ItemTags.SLABS); + copy(BlockTags.STAIRS, ItemTags.STAIRS); + copy(BlockTags.WALLS, ItemTags.WALLS); + + // mod tags + copy(TwigsTags.BLOODSTONE_BLOCK, TwigsTags.BLOODSTONE_ITEM); + copy(TwigsTags.PACKED_SILT_BLOCK, TwigsTags.PACKED_SILT_ITEM); + copy(TwigsTags.RHYOLITE_BLOCK, TwigsTags.RHYOLITE_ITEM); + copy(TwigsTags.SCHIST_BLOCK, TwigsTags.SCHIST_ITEM); + copy(TwigsTags.SILT_POTS_BLOCK, TwigsTags.SILT_POTS_ITEM); + copy(TwigsTags.TABLES_BLOCK, TwigsTags.TABLES_ITEM); + } +} diff --git a/src/main/java/com/ninni/twigs/data/TwigsConfiguredFeatureProvider.java b/src/main/java/com/ninni/twigs/data/worldgen/TwigsConfiguredFeatureProvider.java similarity index 98% rename from src/main/java/com/ninni/twigs/data/TwigsConfiguredFeatureProvider.java rename to src/main/java/com/ninni/twigs/data/worldgen/TwigsConfiguredFeatureProvider.java index 07b8a68b..1e33cd5b 100644 --- a/src/main/java/com/ninni/twigs/data/TwigsConfiguredFeatureProvider.java +++ b/src/main/java/com/ninni/twigs/data/worldgen/TwigsConfiguredFeatureProvider.java @@ -1,4 +1,4 @@ -package com.ninni.twigs.data; +package com.ninni.twigs.data.worldgen; import com.ninni.twigs.registry.TwigsConfiguredFeatures; import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; diff --git a/src/main/java/com/ninni/twigs/data/TwigsPlacedFeatureProvider.java b/src/main/java/com/ninni/twigs/data/worldgen/TwigsPlacedFeatureProvider.java similarity index 98% rename from src/main/java/com/ninni/twigs/data/TwigsPlacedFeatureProvider.java rename to src/main/java/com/ninni/twigs/data/worldgen/TwigsPlacedFeatureProvider.java index 89de73c3..1d4b47e1 100644 --- a/src/main/java/com/ninni/twigs/data/TwigsPlacedFeatureProvider.java +++ b/src/main/java/com/ninni/twigs/data/worldgen/TwigsPlacedFeatureProvider.java @@ -1,4 +1,4 @@ -package com.ninni.twigs.data; +package com.ninni.twigs.data.worldgen; import com.ninni.twigs.registry.TwigsPlacedFeatures; import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; diff --git a/src/main/java/com/ninni/twigs/data/worldgen/TwigsStructureProvider.java b/src/main/java/com/ninni/twigs/data/worldgen/TwigsStructureProvider.java new file mode 100644 index 00000000..582f0ff5 --- /dev/null +++ b/src/main/java/com/ninni/twigs/data/worldgen/TwigsStructureProvider.java @@ -0,0 +1,88 @@ +package com.ninni.twigs.data.worldgen; + +import com.google.common.collect.ImmutableList; +import com.mojang.datafixers.util.Pair; +import com.ninni.twigs.TwigsTags; +import com.ninni.twigs.world.gen.structures.ObeliskStructure; +import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; +import net.fabricmc.fabric.api.datagen.v1.provider.FabricDynamicRegistryProvider; +import net.minecraft.core.HolderLookup; +import net.minecraft.core.registries.Registries; +import net.minecraft.data.worldgen.BootstrapContext; +import net.minecraft.data.worldgen.Pools; +import net.minecraft.data.worldgen.ProcessorLists; +import net.minecraft.resources.ResourceKey; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.level.levelgen.GenerationStep; +import net.minecraft.world.level.levelgen.structure.Structure; +import net.minecraft.world.level.levelgen.structure.StructureSet; +import net.minecraft.world.level.levelgen.structure.TerrainAdjustment; +import net.minecraft.world.level.levelgen.structure.placement.RandomSpreadStructurePlacement; +import net.minecraft.world.level.levelgen.structure.placement.RandomSpreadType; +import net.minecraft.world.level.levelgen.structure.pools.StructurePoolElement; +import net.minecraft.world.level.levelgen.structure.pools.StructureTemplatePool; + +import java.util.concurrent.CompletableFuture; + +import static com.ninni.twigs.Twigs.MOD_ID; + +public class TwigsStructureProvider extends FabricDynamicRegistryProvider { + + public TwigsStructureProvider(FabricDataOutput output, CompletableFuture registriesFuture) { + super(output, registriesFuture); + } + + @Override + protected void configure(HolderLookup.Provider registries, Entries entries) { + entries.addAll(registries.lookupOrThrow(Registries.STRUCTURE)); + entries.addAll(registries.lookupOrThrow(Registries.STRUCTURE_SET)); + entries.addAll(registries.lookupOrThrow(Registries.TEMPLATE_POOL)); + } + + @Override + public String getName() { + return "worldgen/structure"; + } + + // (ender) this one will be bad Im sorry + + static ResourceLocation OBELISK = ResourceLocation.fromNamespaceAndPath(MOD_ID, "bloodstone_obelisk"); + static ResourceKey BLOODSTONE_OBELISK_STRUCTURE = ResourceKey.create(Registries.STRUCTURE, OBELISK); + static ResourceKey BLOODSTONE_OBELISK_SET = ResourceKey.create(Registries.STRUCTURE_SET, OBELISK); + static ResourceKey BLOODSTONE_OBELISK_TEMPLATE_POOL = ResourceKey.create(Registries.TEMPLATE_POOL, OBELISK); + + public static void bootstrapTemplatePools(BootstrapContext context) { + var pools = context.lookup(Registries.TEMPLATE_POOL); + var processors = context.lookup(Registries.PROCESSOR_LIST); + context.register(BLOODSTONE_OBELISK_TEMPLATE_POOL, + new StructureTemplatePool( + pools.getOrThrow(Pools.EMPTY), + ImmutableList.of(Pair.of(StructurePoolElement.single("twigs:bloodstone_obelisk", processors.getOrThrow(ProcessorLists.EMPTY)), 1)), + StructureTemplatePool.Projection.RIGID + ) + ); + } + + public static void bootstrapStructureSets(BootstrapContext context) { + var structures = context.lookup(Registries.STRUCTURE); + context.register(BLOODSTONE_OBELISK_SET, + new StructureSet( + structures.getOrThrow(BLOODSTONE_OBELISK_STRUCTURE), + new RandomSpreadStructurePlacement(20, 4, RandomSpreadType.LINEAR, 4206914) + ) + ); + } + + public static void bootstrapStructures(BootstrapContext context) { + var biomes = context.lookup(Registries.BIOME); + context.register( + BLOODSTONE_OBELISK_STRUCTURE, + new ObeliskStructure( + new Structure.StructureSettings.Builder(biomes.getOrThrow(TwigsTags.HAS_STRUCTURE_BLOODSTONE_OBELISK)) + .terrainAdapation(TerrainAdjustment.BEARD_THIN) + .generationStep(GenerationStep.Decoration.SURFACE_STRUCTURES) + .build() + ) + ); + } +} diff --git a/src/main/java/com/ninni/twigs/entity/Pebble.java b/src/main/java/com/ninni/twigs/entity/Pebble.java index f9d9c78a..e8ff70b1 100644 --- a/src/main/java/com/ninni/twigs/entity/Pebble.java +++ b/src/main/java/com/ninni/twigs/entity/Pebble.java @@ -37,7 +37,7 @@ protected Item getDefaultItem() { } private ParticleOptions getParticle() { - ItemStack itemStack = this.getItemRaw(); + ItemStack itemStack = this.getItem(); return itemStack.isEmpty() ? TwigsParticleTypes.ITEM_PEBBLE : new ItemParticleOption(ParticleTypes.ITEM, itemStack); } diff --git a/src/main/java/com/ninni/twigs/item/InstrumentBlockItem.java b/src/main/java/com/ninni/twigs/item/InstrumentBlockItem.java index 5008610d..0fb08b6d 100644 --- a/src/main/java/com/ninni/twigs/item/InstrumentBlockItem.java +++ b/src/main/java/com/ninni/twigs/item/InstrumentBlockItem.java @@ -32,7 +32,7 @@ public InteractionResultHolder use(Level level, Player player, Intera } @Override - public int getUseDuration(ItemStack itemStack) { + public int getUseDuration(ItemStack itemStack, LivingEntity livingEntity) { return 1200; } diff --git a/src/main/java/com/ninni/twigs/item/PebbleItem.java b/src/main/java/com/ninni/twigs/item/PebbleItem.java index 2a0ce136..8316e743 100644 --- a/src/main/java/com/ninni/twigs/item/PebbleItem.java +++ b/src/main/java/com/ninni/twigs/item/PebbleItem.java @@ -2,17 +2,22 @@ import com.ninni.twigs.entity.Pebble; import com.ninni.twigs.registry.TwigsSoundEvents; +import net.minecraft.Util; +import net.minecraft.core.Direction; +import net.minecraft.core.Position; 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.entity.projectile.Projectile; import net.minecraft.world.item.BlockItem; import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.ProjectileItem; import net.minecraft.world.level.Level; import net.minecraft.world.level.block.Block; -public class PebbleItem extends BlockItem { +public class PebbleItem extends BlockItem implements ProjectileItem { public PebbleItem(Block block, Properties properties) { super(block, properties); @@ -33,4 +38,9 @@ public InteractionResultHolder use(Level level, Player player, Intera if (!player.getAbilities().instabuild) stack.shrink(1); return InteractionResultHolder.sidedSuccess(stack, level.isClientSide); } + + @Override + public Projectile asProjectile(Level level, Position position, ItemStack stack, Direction direction) { + return Util.make(new Pebble(level, position.x(), position.y(), position.z()), entity -> entity.setItem(stack)); + } } diff --git a/src/main/java/com/ninni/twigs/mixin/BlockStateBaseMixin.java b/src/main/java/com/ninni/twigs/mixin/BlockStateBaseMixin.java index 0da42bb1..51a2638a 100644 --- a/src/main/java/com/ninni/twigs/mixin/BlockStateBaseMixin.java +++ b/src/main/java/com/ninni/twigs/mixin/BlockStateBaseMixin.java @@ -1,10 +1,7 @@ package com.ninni.twigs.mixin; -import com.ninni.twigs.TwigsTags; import net.minecraft.core.BlockPos; import net.minecraft.world.level.BlockGetter; -import net.minecraft.world.level.block.BushBlock; -import net.minecraft.world.level.block.TallGrassBlock; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.phys.Vec3; import org.spongepowered.asm.mixin.Mixin; diff --git a/src/main/java/com/ninni/twigs/mixin/LootItemAccessor.java b/src/main/java/com/ninni/twigs/mixin/LootItemAccessor.java index 35371850..ea178411 100644 --- a/src/main/java/com/ninni/twigs/mixin/LootItemAccessor.java +++ b/src/main/java/com/ninni/twigs/mixin/LootItemAccessor.java @@ -1,5 +1,6 @@ package com.ninni.twigs.mixin; +import net.minecraft.core.Holder; import net.minecraft.world.item.Item; import net.minecraft.world.level.storage.loot.entries.LootItem; import org.spongepowered.asm.mixin.Mixin; @@ -9,9 +10,9 @@ @Mixin(LootItem.class) public interface LootItemAccessor { @Accessor - Item getItem(); + Holder getItem(); @Mutable @Accessor - void setItem(Item item); + void setItem(Holder item); } diff --git a/src/main/java/com/ninni/twigs/registry/TwigsBiomeModifier.java b/src/main/java/com/ninni/twigs/registry/TwigsBiomeModifier.java index a44362e7..70591f29 100644 --- a/src/main/java/com/ninni/twigs/registry/TwigsBiomeModifier.java +++ b/src/main/java/com/ninni/twigs/registry/TwigsBiomeModifier.java @@ -10,7 +10,6 @@ import net.minecraft.Util; import net.minecraft.resources.ResourceKey; import net.minecraft.resources.ResourceLocation; -import net.minecraft.tags.BiomeTags; import net.minecraft.tags.TagKey; import net.minecraft.world.level.biome.Biome; import net.minecraft.world.level.levelgen.GenerationStep; @@ -37,11 +36,11 @@ public static void init() { } public static void addFeature(String id, GenerationStep.Decoration decoration, ResourceKey resourceKey, TagKey biome) { - BiomeModifications.create(new ResourceLocation(Twigs.MOD_ID, id)).add(ModificationPhase.ADDITIONS, BiomeSelectors.tag(biome), biomeModificationContext -> biomeModificationContext.getGenerationSettings().addFeature(decoration, resourceKey)); + BiomeModifications.create(ResourceLocation.fromNamespaceAndPath(Twigs.MOD_ID, id)).add(ModificationPhase.ADDITIONS, BiomeSelectors.tag(biome), biomeModificationContext -> biomeModificationContext.getGenerationSettings().addFeature(decoration, resourceKey)); } private static void addOre(String id, ResourceKey resourceKey, Predicate biome) { - BiomeModifications.create(new ResourceLocation(Twigs.MOD_ID, id)).add(ModificationPhase.ADDITIONS, biome, context -> context.getGenerationSettings().addFeature(GenerationStep.Decoration.UNDERGROUND_ORES, resourceKey)); + BiomeModifications.create(ResourceLocation.fromNamespaceAndPath(Twigs.MOD_ID, id)).add(ModificationPhase.ADDITIONS, biome, context -> context.getGenerationSettings().addFeature(GenerationStep.Decoration.UNDERGROUND_ORES, resourceKey)); } } diff --git a/src/main/java/com/ninni/twigs/registry/TwigsBlockEntityType.java b/src/main/java/com/ninni/twigs/registry/TwigsBlockEntityType.java index 9c1202a1..6ec3ccd0 100644 --- a/src/main/java/com/ninni/twigs/registry/TwigsBlockEntityType.java +++ b/src/main/java/com/ninni/twigs/registry/TwigsBlockEntityType.java @@ -8,10 +8,11 @@ import net.minecraft.resources.ResourceLocation; import net.minecraft.world.level.block.entity.BlockEntityType; +@SuppressWarnings("deprecation") public class TwigsBlockEntityType { public static final BlockEntityType SILT_POT = Registry.register( - BuiltInRegistries.BLOCK_ENTITY_TYPE, new ResourceLocation(Twigs.MOD_ID, "silt_pot"), + BuiltInRegistries.BLOCK_ENTITY_TYPE, ResourceLocation.fromNamespaceAndPath(Twigs.MOD_ID, "silt_pot"), FabricBlockEntityTypeBuilder.create(SiltPotBlockEntity::new, TwigsBlocks.SILT_POT, TwigsBlocks.BLACK_SILT_POT, diff --git a/src/main/java/com/ninni/twigs/registry/TwigsBlocks.java b/src/main/java/com/ninni/twigs/registry/TwigsBlocks.java index 35be091b..63393fa2 100644 --- a/src/main/java/com/ninni/twigs/registry/TwigsBlocks.java +++ b/src/main/java/com/ninni/twigs/registry/TwigsBlocks.java @@ -2,8 +2,6 @@ import com.ninni.twigs.Twigs; import com.ninni.twigs.block.*; -import com.ninni.twigs.block.SiltPotBlock; -import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings; import net.minecraft.core.Registry; import net.minecraft.core.registries.BuiltInRegistries; import net.minecraft.resources.ResourceLocation; @@ -22,8 +20,8 @@ public class TwigsBlocks { //collectibles - public static final Block AZALEA_FLOWERS = register("azalea_flowers", new AzaleaFlowersBlock(FabricBlockSettings.of().mapColor(MapColor.PLANT).instabreak().noCollission().noOcclusion().sound(SoundType.MOSS_CARPET))); - @SuppressWarnings("unused") public static final Block POTTED_AZALEA_FLOWERS = register("potted_azalea_flowers", new FlowerPotBlock(AZALEA_FLOWERS, FabricBlockSettings.copyOf(Blocks.POTTED_FLOWERING_AZALEA))); + public static final Block AZALEA_FLOWERS = register("azalea_flowers", new AzaleaFlowersBlock(BlockBehaviour.Properties.of().mapColor(MapColor.PLANT).instabreak().noCollission().noOcclusion().sound(SoundType.MOSS_CARPET))); + public static final Block POTTED_AZALEA_FLOWERS = register("potted_azalea_flowers", new FlowerPotBlock(AZALEA_FLOWERS, BlockBehaviour.Properties.ofFullCopy(Blocks.POTTED_FLOWERING_AZALEA))); public static final Block TWIG = register("twig", new FloorItemBlock(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).instabreak().noOcclusion().sound(SoundType.WOOD).noCollission())); public static final Block PEBBLE = register("pebble", new FloorItemBlock(BlockBehaviour.Properties.of().mapColor(MapColor.STONE).instabreak().noOcclusion().noCollission().sound(SoundType.STONE))); public static final Block OPALINE_SEASHELL = register("opaline_seashell", new SeashellBlock(BlockBehaviour.Properties.of().mapColor(MapColor.TERRACOTTA_WHITE).instabreak().noOcclusion().sound(TwigsSoundEvents.SEASHELL))); @@ -34,304 +32,301 @@ public class TwigsBlocks { //bamboo public static final Block BAMBOO_LEAVES = register("bamboo_leaves", new BambooLeavesBlock(BlockBehaviour.Properties.of().mapColor(MapColor.PLANT).strength(0.2F).noOcclusion().instabreak().noCollission().sound(SoundType.MOSS_CARPET))); public static final Block BAMBOO_THATCH = register("bamboo_thatch", new Block(BlockBehaviour.Properties.of().mapColor(MapColor.COLOR_GREEN).strength(0.2F).sound(SoundType.MOSS))); - public static final Block BAMBOO_THATCH_SLAB = register("bamboo_thatch_slab", new SlabBlock(BlockBehaviour.Properties.copy(BAMBOO_THATCH))); - public static final Block BAMBOO_MAT = register("bamboo_mat", new BambooMatBlock(FabricBlockSettings.copyOf(Blocks.BAMBOO_PLANKS))); + public static final Block BAMBOO_THATCH_SLAB = register("bamboo_thatch_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(BAMBOO_THATCH))); + public static final Block BAMBOO_MAT = register("bamboo_mat", new BambooMatBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.BAMBOO_PLANKS))); //paper lanterns public static final Block PAPER_LANTERN = register("paper_lantern", new PaperLanternBlock(Blocks.AIR, BlockBehaviour.Properties.of().mapColor(MapColor.TERRACOTTA_WHITE).strength(1.5f).pushReaction(PushReaction.DESTROY).sound(TwigsSoundEvents.PAPER_LANTERN).lightLevel(blockState -> 15).noOcclusion())); - public static final Block ALLIUM_PAPER_LANTERN = register("allium_paper_lantern", new PaperLanternBlock(Blocks.ALLIUM, BlockBehaviour.Properties.copy(PAPER_LANTERN))); - public static final Block BLUE_ORCHID_PAPER_LANTERN = register("blue_orchid_paper_lantern", new PaperLanternBlock(Blocks.BLUE_ORCHID, BlockBehaviour.Properties.copy(PAPER_LANTERN))); - public static final Block CRIMSON_ROOTS_PAPER_LANTERN = register("crimson_roots_paper_lantern", new PaperLanternBlock(Blocks.CRIMSON_ROOTS, BlockBehaviour.Properties.copy(PAPER_LANTERN))); - public static final Block DANDELION_PAPER_LANTERN = register("dandelion_paper_lantern", new PaperLanternBlock(Blocks.DANDELION, BlockBehaviour.Properties.copy(PAPER_LANTERN))); - public static final Block TORCHFLOWER_PAPER_LANTERN = register("torchflower_paper_lantern", new PaperLanternBlock(Blocks.TORCHFLOWER, BlockBehaviour.Properties.copy(PAPER_LANTERN))); + public static final Block ALLIUM_PAPER_LANTERN = register("allium_paper_lantern", new PaperLanternBlock(Blocks.ALLIUM, BlockBehaviour.Properties.ofFullCopy(PAPER_LANTERN))); + public static final Block BLUE_ORCHID_PAPER_LANTERN = register("blue_orchid_paper_lantern", new PaperLanternBlock(Blocks.BLUE_ORCHID, BlockBehaviour.Properties.ofFullCopy(PAPER_LANTERN))); + public static final Block CRIMSON_ROOTS_PAPER_LANTERN = register("crimson_roots_paper_lantern", new PaperLanternBlock(Blocks.CRIMSON_ROOTS, BlockBehaviour.Properties.ofFullCopy(PAPER_LANTERN))); + public static final Block DANDELION_PAPER_LANTERN = register("dandelion_paper_lantern", new PaperLanternBlock(Blocks.DANDELION, BlockBehaviour.Properties.ofFullCopy(PAPER_LANTERN))); + public static final Block TORCHFLOWER_PAPER_LANTERN = register("torchflower_paper_lantern", new PaperLanternBlock(Blocks.TORCHFLOWER, BlockBehaviour.Properties.ofFullCopy(PAPER_LANTERN))); //lamps - public static final Block LAMP = register("lamp", new LampBlock(FabricBlockSettings.of().mapColor(MapColor.METAL).requiresCorrectToolForDrops().strength(4.5F).sound(TwigsSoundEvents.LAMP).lightLevel(createLampLightLevel()))); - public static final Block SOUL_LAMP = register("soul_lamp", new LampBlock(FabricBlockSettings.copyOf(TwigsBlocks.LAMP))); - public static final Block CRIMSON_SHROOMLAMP = register("crimson_shroomlamp", new Block(FabricBlockSettings.of().mapColor(Blocks.CRIMSON_PLANKS.defaultMapColor()).strength(3.5F).sound(TwigsSoundEvents.SHROOMLAMP).lightLevel(blockState -> 15))); - public static final Block WARPED_SHROOMLAMP = register("warped_shroomlamp", new Block(FabricBlockSettings.copyOf(CRIMSON_SHROOMLAMP).mapColor(Blocks.WARPED_PLANKS.defaultMapColor()))); + public static final Block LAMP = register("lamp", new LampBlock(BlockBehaviour.Properties.of().mapColor(MapColor.METAL).requiresCorrectToolForDrops().strength(4.5F).sound(TwigsSoundEvents.LAMP).lightLevel(createLampLightLevel()))); + public static final Block SOUL_LAMP = register("soul_lamp", new LampBlock(BlockBehaviour.Properties.ofFullCopy(TwigsBlocks.LAMP))); + public static final Block CRIMSON_SHROOMLAMP = register("crimson_shroomlamp", new Block(BlockBehaviour.Properties.of().mapColor(Blocks.CRIMSON_PLANKS.defaultMapColor()).strength(3.5F).sound(TwigsSoundEvents.SHROOMLAMP).lightLevel(blockState -> 15))); + public static final Block WARPED_SHROOMLAMP = register("warped_shroomlamp", new Block(BlockBehaviour.Properties.ofFullCopy(CRIMSON_SHROOMLAMP).mapColor(Blocks.WARPED_PLANKS.defaultMapColor()))); //tables - public static final Block OAK_TABLE = register("oak_table", new TableBlock(FabricBlockSettings.copyOf(Blocks.OAK_PLANKS))); - public static final Block SPRUCE_TABLE = register("spruce_table", new TableBlock(FabricBlockSettings.copyOf(Blocks.SPRUCE_PLANKS))); - public static final Block BIRCH_TABLE = register("birch_table", new TableBlock(FabricBlockSettings.copyOf(Blocks.BIRCH_PLANKS))); - public static final Block JUNGLE_TABLE = register("jungle_table", new TableBlock(FabricBlockSettings.copyOf(Blocks.JUNGLE_PLANKS))); - public static final Block ACACIA_TABLE = register("acacia_table", new TableBlock(FabricBlockSettings.copyOf(Blocks.ACACIA_PLANKS))); - public static final Block DARK_OAK_TABLE = register("dark_oak_table", new TableBlock(FabricBlockSettings.copyOf(Blocks.DARK_OAK_PLANKS))); - public static final Block MANGROVE_TABLE = register("mangrove_table", new TableBlock(FabricBlockSettings.copyOf(Blocks.MANGROVE_PLANKS))); - public static final Block CHERRY_TABLE = register("cherry_table", new TableBlock(FabricBlockSettings.copyOf(Blocks.CHERRY_PLANKS))); - public static final Block BAMBOO_TABLE = register("bamboo_table", new TableBlock(FabricBlockSettings.copyOf(Blocks.BAMBOO_PLANKS))); - public static final Block CRIMSON_TABLE = register("crimson_table", new TableBlock(FabricBlockSettings.copyOf(Blocks.CRIMSON_PLANKS))); - public static final Block WARPED_TABLE = register("warped_table", new TableBlock(FabricBlockSettings.copyOf(Blocks.WARPED_PLANKS))); + public static final Block OAK_TABLE = register("oak_table", new TableBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.OAK_PLANKS))); + public static final Block SPRUCE_TABLE = register("spruce_table", new TableBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.SPRUCE_PLANKS))); + public static final Block BIRCH_TABLE = register("birch_table", new TableBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.BIRCH_PLANKS))); + public static final Block JUNGLE_TABLE = register("jungle_table", new TableBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.JUNGLE_PLANKS))); + public static final Block ACACIA_TABLE = register("acacia_table", new TableBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.ACACIA_PLANKS))); + public static final Block DARK_OAK_TABLE = register("dark_oak_table", new TableBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.DARK_OAK_PLANKS))); + public static final Block MANGROVE_TABLE = register("mangrove_table", new TableBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.MANGROVE_PLANKS))); + public static final Block CHERRY_TABLE = register("cherry_table", new TableBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.CHERRY_PLANKS))); + public static final Block BAMBOO_TABLE = register("bamboo_table", new TableBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.BAMBOO_PLANKS))); + public static final Block CRIMSON_TABLE = register("crimson_table", new TableBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.CRIMSON_PLANKS))); + public static final Block WARPED_TABLE = register("warped_table", new TableBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.WARPED_PLANKS))); //basalt blocks - public static final Block POLISHED_BASALT_BRICKS = register("polished_basalt_bricks", new RotatedPillarBlock(FabricBlockSettings.copyOf(Blocks.POLISHED_BASALT).strength(1.75F, 4.2F).sounds(TwigsSoundEvents.BASALT_BRICKS))); - public static final Block SMOOTH_BASALT_BRICKS = register("smooth_basalt_bricks", new Block(FabricBlockSettings.copyOf(Blocks.SMOOTH_BASALT).strength(1.75F, 4.2F).sounds(TwigsSoundEvents.BASALT_BRICKS))); - public static final Block SMOOTH_BASALT_BRICK_STAIRS = register("smooth_basalt_brick_stairs", new StairBlock(SMOOTH_BASALT_BRICKS.defaultBlockState(), FabricBlockSettings.copyOf(SMOOTH_BASALT_BRICKS))); - public static final Block SMOOTH_BASALT_BRICK_SLAB = register("smooth_basalt_brick_slab", new SlabBlock(FabricBlockSettings.copyOf(SMOOTH_BASALT_BRICKS))); - public static final Block SMOOTH_BASALT_BRICK_WALL = register("smooth_basalt_brick_wall", new WallBlock(FabricBlockSettings.copyOf(SMOOTH_BASALT_BRICKS))); - public static final Block CHISELED_SMOOTH_BASALT_BRICKS = register("chiseled_smooth_basalt_bricks", new Block(FabricBlockSettings.copyOf(SMOOTH_BASALT_BRICKS))); + public static final Block POLISHED_BASALT_BRICKS = register("polished_basalt_bricks", new RotatedPillarBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.POLISHED_BASALT).strength(1.75F, 4.2F).sound(TwigsSoundEvents.BASALT_BRICKS))); + public static final Block SMOOTH_BASALT_BRICKS = register("smooth_basalt_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(Blocks.SMOOTH_BASALT).strength(1.75F, 4.2F).sound(TwigsSoundEvents.BASALT_BRICKS))); + public static final Block SMOOTH_BASALT_BRICK_STAIRS = register("smooth_basalt_brick_stairs", new StairBlock(SMOOTH_BASALT_BRICKS.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(SMOOTH_BASALT_BRICKS))); + public static final Block SMOOTH_BASALT_BRICK_SLAB = register("smooth_basalt_brick_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(SMOOTH_BASALT_BRICKS))); + public static final Block SMOOTH_BASALT_BRICK_WALL = register("smooth_basalt_brick_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(SMOOTH_BASALT_BRICKS))); + public static final Block CHISELED_SMOOTH_BASALT_BRICKS = register("chiseled_smooth_basalt_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(SMOOTH_BASALT_BRICKS))); //bricks - public static final Block MIXED_BRICKS = register("mixed_bricks", new Block(FabricBlockSettings.copyOf(BRICKS))); - public static final Block CHISELED_BRICKS = register("chiseled_bricks", new FacingBlock(FabricBlockSettings.copyOf(BRICKS))); - public static final Block CRACKED_BRICKS = register("cracked_bricks", new Block(FabricBlockSettings.copyOf(BRICKS))); - public static final Block MOSSY_BRICKS = register("mossy_bricks", new Block(FabricBlockSettings.copyOf(BRICKS))); - public static final Block MOSSY_BRICK_STAIRS = register("mossy_brick_stairs", new StairBlock(MOSSY_BRICKS.defaultBlockState(), FabricBlockSettings.copyOf(MOSSY_BRICKS))); - public static final Block MOSSY_BRICK_SLAB = register("mossy_brick_slab", new SlabBlock(FabricBlockSettings.copyOf(MOSSY_BRICKS))); - public static final Block MOSSY_BRICK_WALL = register("mossy_brick_wall", new WallBlock(FabricBlockSettings.copyOf(MOSSY_BRICKS))); - public static final Block BRICK_TRAIL = register("brick_trail", new BrickTrailBlock(FabricBlockSettings.copyOf(BRICKS).noCollission().noOcclusion().instabreak())); + public static final Block MIXED_BRICKS = register("mixed_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(BRICKS))); + public static final Block CHISELED_BRICKS = register("chiseled_bricks", new FacingBlock(BlockBehaviour.Properties.ofFullCopy(BRICKS))); + public static final Block CRACKED_BRICKS = register("cracked_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(BRICKS))); + public static final Block MOSSY_BRICKS = register("mossy_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(BRICKS))); + public static final Block MOSSY_BRICK_STAIRS = register("mossy_brick_stairs", new StairBlock(MOSSY_BRICKS.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(MOSSY_BRICKS))); + public static final Block MOSSY_BRICK_SLAB = register("mossy_brick_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(MOSSY_BRICKS))); + public static final Block MOSSY_BRICK_WALL = register("mossy_brick_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(MOSSY_BRICKS))); + public static final Block BRICK_TRAIL = register("brick_trail", new BrickTrailBlock(BlockBehaviour.Properties.ofFullCopy(BRICKS).noCollission().noOcclusion().instabreak())); //gravel bricks - public static final Block GRAVEL_BRICKS = register("gravel_bricks", new Block(FabricBlockSettings.of().mapColor(Blocks.GRAVEL.defaultMapColor()).strength(0.8f).sound(TwigsSoundEvents.GRAVEL_BRICKS))); - public static final Block GRAVEL_BRICK_STAIRS = register("gravel_brick_stairs", new StairBlock(GRAVEL_BRICKS.defaultBlockState(), FabricBlockSettings.copyOf(GRAVEL_BRICKS))); - public static final Block GRAVEL_BRICK_SLAB = register("gravel_brick_slab", new SlabBlock(FabricBlockSettings.copyOf(GRAVEL_BRICKS))); - public static final Block GRAVEL_BRICK_WALL = register("gravel_brick_wall", new WallBlock(FabricBlockSettings.copyOf(GRAVEL_BRICKS))); + public static final Block GRAVEL_BRICKS = register("gravel_bricks", new Block(BlockBehaviour.Properties.of().mapColor(Blocks.GRAVEL.defaultMapColor()).strength(0.8f).sound(TwigsSoundEvents.GRAVEL_BRICKS))); + public static final Block GRAVEL_BRICK_STAIRS = register("gravel_brick_stairs", new StairBlock(GRAVEL_BRICKS.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(GRAVEL_BRICKS))); + public static final Block GRAVEL_BRICK_SLAB = register("gravel_brick_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(GRAVEL_BRICKS))); + public static final Block GRAVEL_BRICK_WALL = register("gravel_brick_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(GRAVEL_BRICKS))); //smooth stone bricks - public static final Block SMOOTH_STONE_BRICKS = register("smooth_stone_bricks", new Block(FabricBlockSettings.copyOf(Blocks.STONE))); - public static final Block SMOOTH_STONE_BRICK_STAIRS = register("smooth_stone_brick_stairs", new StairBlock(SMOOTH_STONE_BRICKS.defaultBlockState(), FabricBlockSettings.copyOf(SMOOTH_STONE_BRICKS))); - public static final Block SMOOTH_STONE_BRICK_SLAB = register("smooth_stone_brick_slab", new SlabBlock(FabricBlockSettings.copyOf(SMOOTH_STONE_BRICKS))); - public static final Block SMOOTH_STONE_BRICK_WALL = register("smooth_stone_brick_wall", new WallBlock(FabricBlockSettings.copyOf(SMOOTH_STONE_BRICKS))); + public static final Block SMOOTH_STONE_BRICKS = register("smooth_stone_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(Blocks.STONE))); + public static final Block SMOOTH_STONE_BRICK_STAIRS = register("smooth_stone_brick_stairs", new StairBlock(SMOOTH_STONE_BRICKS.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(SMOOTH_STONE_BRICKS))); + public static final Block SMOOTH_STONE_BRICK_SLAB = register("smooth_stone_brick_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(SMOOTH_STONE_BRICKS))); + public static final Block SMOOTH_STONE_BRICK_WALL = register("smooth_stone_brick_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(SMOOTH_STONE_BRICKS))); //columns - public static final Block QUARTZ_COLUMN = register("quartz_column", new ColumnBlock(FabricBlockSettings.copyOf(Blocks.QUARTZ_BRICKS))); - public static final Block STONE_COLUMN = register("stone_column", new ColumnBlock(FabricBlockSettings.copyOf(Blocks.STONE_BRICKS))); - public static final Block DEEPSLATE_COLUMN = register("deepslate_column", new ColumnBlock(FabricBlockSettings.copyOf(Blocks.DEEPSLATE_BRICKS))); - public static final Block BLACKSTONE_COLUMN = register("blackstone_column", new ColumnBlock(FabricBlockSettings.copyOf(Blocks.POLISHED_BLACKSTONE_BRICKS))); + public static final Block QUARTZ_COLUMN = register("quartz_column", new ColumnBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.QUARTZ_BRICKS))); + public static final Block STONE_COLUMN = register("stone_column", new ColumnBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.STONE_BRICKS))); + public static final Block DEEPSLATE_COLUMN = register("deepslate_column", new ColumnBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.DEEPSLATE_BRICKS))); + public static final Block BLACKSTONE_COLUMN = register("blackstone_column", new ColumnBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.POLISHED_BLACKSTONE_BRICKS))); //copper pillars - public static final Block COPPER_PILLAR = register("copper_pillar", new PillarOxidizableBlock(WeatheringCopper.WeatherState.UNAFFECTED, BlockBehaviour.Properties.copy(Blocks.CUT_COPPER))); - public static final Block EXPOSED_COPPER_PILLAR = register("exposed_copper_pillar", new PillarOxidizableBlock(WeatheringCopper.WeatherState.EXPOSED, BlockBehaviour.Properties.copy(Blocks.EXPOSED_CUT_COPPER))); - public static final Block WEATHERED_COPPER_PILLAR = register("weathered_copper_pillar", new PillarOxidizableBlock(WeatheringCopper.WeatherState.WEATHERED, BlockBehaviour.Properties.copy(Blocks.WEATHERED_CUT_COPPER))); - public static final Block OXIDIZED_COPPER_PILLAR = register("oxidized_copper_pillar", new PillarOxidizableBlock(WeatheringCopper.WeatherState.OXIDIZED, BlockBehaviour.Properties.copy(Blocks.OXIDIZED_CUT_COPPER))); - public static final Block WAXED_COPPER_PILLAR = register("waxed_copper_pillar", new RotatedPillarBlock(BlockBehaviour.Properties.copy(Blocks.WAXED_CUT_COPPER))); - public static final Block WAXED_EXPOSED_COPPER_PILLAR = register("waxed_exposed_copper_pillar", new RotatedPillarBlock(BlockBehaviour.Properties.copy(Blocks.WAXED_EXPOSED_CUT_COPPER))); - public static final Block WAXED_WEATHERED_COPPER_PILLAR = register("waxed_weathered_copper_pillar", new RotatedPillarBlock(BlockBehaviour.Properties.copy(Blocks.WAXED_WEATHERED_CUT_COPPER))); - public static final Block WAXED_OXIDIZED_COPPER_PILLAR = register("waxed_oxidized_copper_pillar", new RotatedPillarBlock(BlockBehaviour.Properties.copy(Blocks.WAXED_OXIDIZED_CUT_COPPER))); + public static final Block COPPER_PILLAR = register("copper_pillar", new PillarOxidizableBlock(WeatheringCopper.WeatherState.UNAFFECTED, BlockBehaviour.Properties.ofFullCopy(Blocks.CUT_COPPER))); + public static final Block EXPOSED_COPPER_PILLAR = register("exposed_copper_pillar", new PillarOxidizableBlock(WeatheringCopper.WeatherState.EXPOSED, BlockBehaviour.Properties.ofFullCopy(Blocks.EXPOSED_CUT_COPPER))); + public static final Block WEATHERED_COPPER_PILLAR = register("weathered_copper_pillar", new PillarOxidizableBlock(WeatheringCopper.WeatherState.WEATHERED, BlockBehaviour.Properties.ofFullCopy(Blocks.WEATHERED_CUT_COPPER))); + public static final Block OXIDIZED_COPPER_PILLAR = register("oxidized_copper_pillar", new PillarOxidizableBlock(WeatheringCopper.WeatherState.OXIDIZED, BlockBehaviour.Properties.ofFullCopy(Blocks.OXIDIZED_CUT_COPPER))); + public static final Block WAXED_COPPER_PILLAR = register("waxed_copper_pillar", new RotatedPillarBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.WAXED_CUT_COPPER))); + public static final Block WAXED_EXPOSED_COPPER_PILLAR = register("waxed_exposed_copper_pillar", new RotatedPillarBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.WAXED_EXPOSED_CUT_COPPER))); + public static final Block WAXED_WEATHERED_COPPER_PILLAR = register("waxed_weathered_copper_pillar", new RotatedPillarBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.WAXED_WEATHERED_CUT_COPPER))); + public static final Block WAXED_OXIDIZED_COPPER_PILLAR = register("waxed_oxidized_copper_pillar", new RotatedPillarBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.WAXED_OXIDIZED_CUT_COPPER))); //amethyst blocks - public static final Block POLISHED_AMETHYST = register("polished_amethyst", new AmethystBlock(FabricBlockSettings.copyOf(Blocks.AMETHYST_BLOCK))); - public static final Block CUT_AMETHYST = register("cut_amethyst", new CutAmethystBlock(FabricBlockSettings.copyOf(Blocks.AMETHYST_BLOCK))); + public static final Block POLISHED_AMETHYST = register("polished_amethyst", new AmethystBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.AMETHYST_BLOCK))); + public static final Block CUT_AMETHYST = register("cut_amethyst", new CutAmethystBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.AMETHYST_BLOCK))); //misc public static final Block PETRIFIED_LICHEN = register("petrified_lichen", new GlowLichenBlock(BlockBehaviour.Properties.of().mapColor(MapColor.COLOR_GRAY).noCollission().strength(0.2f).sound(SoundType.DEEPSLATE).lightLevel(GlowLichenBlock.emission(7)))); - public static final Block COMPACTED_DRIPSTONE = register("compacted_dripstone", new CompactedDripstoneBlock(FabricBlockSettings.copyOf(Blocks.DRIPSTONE_BLOCK))); - public static final Block ROCKY_DIRT = register("rocky_dirt", new Block(FabricBlockSettings.of().mapColor(DyeColor.GRAY).requiresCorrectToolForDrops().strength(1.25F, 6.0F).sound(TwigsSoundEvents.ROCKY_DIRT))); + public static final Block COMPACTED_DRIPSTONE = register("compacted_dripstone", new CompactedDripstoneBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.DRIPSTONE_BLOCK))); + public static final Block ROCKY_DIRT = register("rocky_dirt", new Block(BlockBehaviour.Properties.of().mapColor(DyeColor.GRAY).requiresCorrectToolForDrops().strength(1.25F, 6.0F).sound(TwigsSoundEvents.ROCKY_DIRT))); //cobblestone bricks - public static final Block COBBLESTONE_BRICKS = register("cobblestone_bricks", new Block(FabricBlockSettings.copyOf(Blocks.COBBLESTONE))); - public static final Block COBBLESTONE_BRICK_STAIRS = register("cobblestone_brick_stairs", new StairBlock(COBBLESTONE_BRICKS.defaultBlockState(), FabricBlockSettings.copyOf(COBBLESTONE_BRICKS))); - public static final Block COBBLESTONE_BRICK_SLAB = register("cobblestone_brick_slab", new SlabBlock(FabricBlockSettings.copyOf(COBBLESTONE_BRICKS))); - public static final Block COBBLESTONE_BRICK_WALL = register("cobblestone_brick_wall", new WallBlock(FabricBlockSettings.copyOf(COBBLESTONE_BRICKS))); - public static final Block CRACKED_COBBLESTONE_BRICKS = register("cracked_cobblestone_bricks", new Block(FabricBlockSettings.copyOf(COBBLESTONE_BRICKS))); - public static final Block MOSSY_COBBLESTONE_BRICKS = register("mossy_cobblestone_bricks", new Block(FabricBlockSettings.copyOf(Blocks.MOSSY_COBBLESTONE))); - public static final Block MOSSY_COBBLESTONE_BRICK_STAIRS = register("mossy_cobblestone_brick_stairs", new StairBlock(MOSSY_COBBLESTONE_BRICKS.defaultBlockState(), FabricBlockSettings.copyOf(MOSSY_COBBLESTONE_BRICKS))); - public static final Block MOSSY_COBBLESTONE_BRICK_SLAB = register("mossy_cobblestone_brick_slab", new SlabBlock(FabricBlockSettings.copyOf(MOSSY_COBBLESTONE_BRICKS))); - public static final Block MOSSY_COBBLESTONE_BRICK_WALL = register("mossy_cobblestone_brick_wall", new WallBlock(FabricBlockSettings.copyOf(MOSSY_COBBLESTONE_BRICKS))); + public static final Block COBBLESTONE_BRICKS = register("cobblestone_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(Blocks.COBBLESTONE))); + public static final Block COBBLESTONE_BRICK_STAIRS = register("cobblestone_brick_stairs", new StairBlock(COBBLESTONE_BRICKS.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(COBBLESTONE_BRICKS))); + public static final Block COBBLESTONE_BRICK_SLAB = register("cobblestone_brick_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(COBBLESTONE_BRICKS))); + public static final Block COBBLESTONE_BRICK_WALL = register("cobblestone_brick_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(COBBLESTONE_BRICKS))); + public static final Block CRACKED_COBBLESTONE_BRICKS = register("cracked_cobblestone_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(COBBLESTONE_BRICKS))); + public static final Block MOSSY_COBBLESTONE_BRICKS = register("mossy_cobblestone_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(Blocks.MOSSY_COBBLESTONE))); + public static final Block MOSSY_COBBLESTONE_BRICK_STAIRS = register("mossy_cobblestone_brick_stairs", new StairBlock(MOSSY_COBBLESTONE_BRICKS.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(MOSSY_COBBLESTONE_BRICKS))); + public static final Block MOSSY_COBBLESTONE_BRICK_SLAB = register("mossy_cobblestone_brick_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(MOSSY_COBBLESTONE_BRICKS))); + public static final Block MOSSY_COBBLESTONE_BRICK_WALL = register("mossy_cobblestone_brick_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(MOSSY_COBBLESTONE_BRICKS))); //decorated blackstone bricks - public static final Block TWISTING_POLISHED_BLACKSTONE_BRICKS = register("twisting_polished_blackstone_bricks", new Block(FabricBlockSettings.copyOf(Blocks.POLISHED_BLACKSTONE_BRICKS))); - public static final Block TWISTING_POLISHED_BLACKSTONE_BRICK_STAIRS = register("twisting_polished_blackstone_brick_stairs", new StairBlock(TWISTING_POLISHED_BLACKSTONE_BRICKS.defaultBlockState(), FabricBlockSettings.copyOf(TWISTING_POLISHED_BLACKSTONE_BRICKS))); - public static final Block TWISTING_POLISHED_BLACKSTONE_BRICK_SLAB = register("twisting_polished_blackstone_brick_slab", new SlabBlock(FabricBlockSettings.copyOf(TWISTING_POLISHED_BLACKSTONE_BRICKS))); - public static final Block TWISTING_POLISHED_BLACKSTONE_BRICK_WALL = register("twisting_polished_blackstone_brick_wall", new WallBlock(FabricBlockSettings.copyOf(TWISTING_POLISHED_BLACKSTONE_BRICKS))); - public static final Block WEEPING_POLISHED_BLACKSTONE_BRICKS = register("weeping_polished_blackstone_bricks", new Block(FabricBlockSettings.copyOf(Blocks.POLISHED_BLACKSTONE_BRICKS))); - public static final Block WEEPING_POLISHED_BLACKSTONE_BRICK_STAIRS = register("weeping_polished_blackstone_brick_stairs", new StairBlock(WEEPING_POLISHED_BLACKSTONE_BRICKS.defaultBlockState(), FabricBlockSettings.copyOf(WEEPING_POLISHED_BLACKSTONE_BRICKS))); - public static final Block WEEPING_POLISHED_BLACKSTONE_BRICK_SLAB = register("weeping_polished_blackstone_brick_slab", new SlabBlock(FabricBlockSettings.copyOf(WEEPING_POLISHED_BLACKSTONE_BRICKS))); - public static final Block WEEPING_POLISHED_BLACKSTONE_BRICK_WALL = register("weeping_polished_blackstone_brick_wall", new WallBlock(FabricBlockSettings.copyOf(WEEPING_POLISHED_BLACKSTONE_BRICKS))); + public static final Block TWISTING_POLISHED_BLACKSTONE_BRICKS = register("twisting_polished_blackstone_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(Blocks.POLISHED_BLACKSTONE_BRICKS))); + public static final Block TWISTING_POLISHED_BLACKSTONE_BRICK_STAIRS = register("twisting_polished_blackstone_brick_stairs", new StairBlock(TWISTING_POLISHED_BLACKSTONE_BRICKS.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(TWISTING_POLISHED_BLACKSTONE_BRICKS))); + public static final Block TWISTING_POLISHED_BLACKSTONE_BRICK_SLAB = register("twisting_polished_blackstone_brick_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(TWISTING_POLISHED_BLACKSTONE_BRICKS))); + public static final Block TWISTING_POLISHED_BLACKSTONE_BRICK_WALL = register("twisting_polished_blackstone_brick_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(TWISTING_POLISHED_BLACKSTONE_BRICKS))); + public static final Block WEEPING_POLISHED_BLACKSTONE_BRICKS = register("weeping_polished_blackstone_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(Blocks.POLISHED_BLACKSTONE_BRICKS))); + public static final Block WEEPING_POLISHED_BLACKSTONE_BRICK_STAIRS = register("weeping_polished_blackstone_brick_stairs", new StairBlock(WEEPING_POLISHED_BLACKSTONE_BRICKS.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(WEEPING_POLISHED_BLACKSTONE_BRICKS))); + public static final Block WEEPING_POLISHED_BLACKSTONE_BRICK_SLAB = register("weeping_polished_blackstone_brick_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(WEEPING_POLISHED_BLACKSTONE_BRICKS))); + public static final Block WEEPING_POLISHED_BLACKSTONE_BRICK_WALL = register("weeping_polished_blackstone_brick_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(WEEPING_POLISHED_BLACKSTONE_BRICKS))); //tuff blocks - public static final Block TUFF_STAIRS = register("tuff_stairs", new StairBlock(Blocks.TUFF.defaultBlockState(), FabricBlockSettings.copyOf(Blocks.TUFF))); - public static final Block TUFF_SLAB = register("tuff_slab", new SlabBlock(FabricBlockSettings.copyOf(Blocks.TUFF))); - public static final Block TUFF_WALL = register("tuff_wall", new WallBlock(FabricBlockSettings.copyOf(Blocks.TUFF))); - public static final Block POLISHED_TUFF = register("polished_tuff", new Block(FabricBlockSettings.copyOf(Blocks.TUFF))); - public static final Block POLISHED_TUFF_STAIRS = register("polished_tuff_stairs", new StairBlock(POLISHED_TUFF.defaultBlockState(), FabricBlockSettings.copyOf(POLISHED_TUFF))); - public static final Block POLISHED_TUFF_SLAB = register("polished_tuff_slab", new SlabBlock(FabricBlockSettings.copyOf(POLISHED_TUFF))); - public static final Block POLISHED_TUFF_BRICKS = register("polished_tuff_bricks", new Block(FabricBlockSettings.copyOf(Blocks.TUFF).sounds(TwigsSoundEvents.TUFF_BRICKS))); - public static final Block POLISHED_TUFF_BRICK_STAIRS = register("polished_tuff_brick_stairs", new StairBlock(POLISHED_TUFF_BRICKS.defaultBlockState(), FabricBlockSettings.copyOf(POLISHED_TUFF_BRICKS))); - public static final Block POLISHED_TUFF_BRICK_SLAB = register("polished_tuff_brick_slab", new SlabBlock(FabricBlockSettings.copyOf(POLISHED_TUFF_BRICKS))); - public static final Block POLISHED_TUFF_BRICK_WALL = register("polished_tuff_brick_wall", new WallBlock(FabricBlockSettings.copyOf(POLISHED_TUFF_BRICKS))); - public static final Block CRACKED_POLISHED_TUFF_BRICKS = register("cracked_polished_tuff_bricks", new Block(FabricBlockSettings.copyOf(POLISHED_TUFF_BRICKS))); + public static final Block POLISHED_TUFF = register("polished_tuff", new Block(BlockBehaviour.Properties.ofFullCopy(Blocks.TUFF))); + public static final Block POLISHED_TUFF_STAIRS = register("polished_tuff_stairs", new StairBlock(POLISHED_TUFF.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(POLISHED_TUFF))); + public static final Block POLISHED_TUFF_SLAB = register("polished_tuff_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(POLISHED_TUFF))); + public static final Block POLISHED_TUFF_BRICKS = register("polished_tuff_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(Blocks.TUFF).sound(TwigsSoundEvents.TUFF_BRICKS))); + public static final Block POLISHED_TUFF_BRICK_STAIRS = register("polished_tuff_brick_stairs", new StairBlock(POLISHED_TUFF_BRICKS.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(POLISHED_TUFF_BRICKS))); + public static final Block POLISHED_TUFF_BRICK_SLAB = register("polished_tuff_brick_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(POLISHED_TUFF_BRICKS))); + public static final Block POLISHED_TUFF_BRICK_WALL = register("polished_tuff_brick_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(POLISHED_TUFF_BRICKS))); + public static final Block CRACKED_POLISHED_TUFF_BRICKS = register("cracked_polished_tuff_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(POLISHED_TUFF_BRICKS))); //calcite blocks - public static final Block CALCITE_STAIRS = register("calcite_stairs", new StairBlock(Blocks.CALCITE.defaultBlockState(), FabricBlockSettings.copyOf(Blocks.CALCITE))); - public static final Block CALCITE_SLAB = register("calcite_slab", new SlabBlock(FabricBlockSettings.copyOf(Blocks.CALCITE))); - public static final Block CALCITE_WALL = register("calcite_wall", new WallBlock(FabricBlockSettings.copyOf(Blocks.CALCITE))); - public static final Block POLISHED_CALCITE = register("polished_calcite", new Block(FabricBlockSettings.copyOf(Blocks.CALCITE))); - public static final Block POLISHED_CALCITE_STAIRS = register("polished_calcite_stairs", new StairBlock(POLISHED_CALCITE.defaultBlockState(), FabricBlockSettings.copyOf(POLISHED_CALCITE))); - public static final Block POLISHED_CALCITE_SLAB = register("polished_calcite_slab", new SlabBlock(FabricBlockSettings.copyOf(POLISHED_CALCITE))); - public static final Block POLISHED_CALCITE_BRICKS = register("polished_calcite_bricks", new Block(FabricBlockSettings.copyOf(Blocks.CALCITE).sounds(TwigsSoundEvents.CALCITE_BRICKS))); - public static final Block POLISHED_CALCITE_BRICK_STAIRS = register("polished_calcite_brick_stairs", new StairBlock(POLISHED_CALCITE_BRICKS.defaultBlockState(), FabricBlockSettings.copyOf(POLISHED_CALCITE_BRICKS))); - public static final Block POLISHED_CALCITE_BRICK_SLAB = register("polished_calcite_brick_slab", new SlabBlock(FabricBlockSettings.copyOf(POLISHED_CALCITE_BRICKS))); - public static final Block POLISHED_CALCITE_BRICK_WALL = register("polished_calcite_brick_wall", new WallBlock(FabricBlockSettings.copyOf(POLISHED_CALCITE_BRICKS))); - public static final Block CRACKED_POLISHED_CALCITE_BRICKS = register("cracked_polished_calcite_bricks", new Block(FabricBlockSettings.copyOf(POLISHED_CALCITE_BRICKS))); + public static final Block CALCITE_STAIRS = register("calcite_stairs", new StairBlock(Blocks.CALCITE.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(Blocks.CALCITE))); + public static final Block CALCITE_SLAB = register("calcite_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.CALCITE))); + public static final Block CALCITE_WALL = register("calcite_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.CALCITE))); + public static final Block POLISHED_CALCITE = register("polished_calcite", new Block(BlockBehaviour.Properties.ofFullCopy(Blocks.CALCITE))); + public static final Block POLISHED_CALCITE_STAIRS = register("polished_calcite_stairs", new StairBlock(POLISHED_CALCITE.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(POLISHED_CALCITE))); + public static final Block POLISHED_CALCITE_SLAB = register("polished_calcite_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(POLISHED_CALCITE))); + public static final Block POLISHED_CALCITE_BRICKS = register("polished_calcite_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(Blocks.CALCITE).sound(TwigsSoundEvents.CALCITE_BRICKS))); + public static final Block POLISHED_CALCITE_BRICK_STAIRS = register("polished_calcite_brick_stairs", new StairBlock(POLISHED_CALCITE_BRICKS.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(POLISHED_CALCITE_BRICKS))); + public static final Block POLISHED_CALCITE_BRICK_SLAB = register("polished_calcite_brick_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(POLISHED_CALCITE_BRICKS))); + public static final Block POLISHED_CALCITE_BRICK_WALL = register("polished_calcite_brick_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(POLISHED_CALCITE_BRICKS))); + public static final Block CRACKED_POLISHED_CALCITE_BRICKS = register("cracked_polished_calcite_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(POLISHED_CALCITE_BRICKS))); //schist blocks - public static final Block SCHIST = register("schist", new Block(FabricBlockSettings.of().mapColor(DyeColor.WHITE).requiresCorrectToolForDrops().strength(1F).sound(TwigsSoundEvents.SCHIST))); - public static final Block SCHIST_STAIRS = register("schist_stairs", new StairBlock(SCHIST.defaultBlockState(), FabricBlockSettings.copyOf(SCHIST))); - public static final Block SCHIST_SLAB = register("schist_slab", new SlabBlock(FabricBlockSettings.copyOf(SCHIST))); - public static final Block SCHIST_WALL = register("schist_wall", new WallBlock(FabricBlockSettings.copyOf(SCHIST))); - public static final Block POLISHED_SCHIST = register("polished_schist", new Block(FabricBlockSettings.copyOf(SCHIST))); - public static final Block POLISHED_SCHIST_STAIRS = register("polished_schist_stairs", new StairBlock(POLISHED_SCHIST.defaultBlockState(), FabricBlockSettings.copyOf(POLISHED_SCHIST))); - public static final Block POLISHED_SCHIST_SLAB = register("polished_schist_slab", new SlabBlock(FabricBlockSettings.copyOf(POLISHED_SCHIST))); - public static final Block POLISHED_SCHIST_BRICKS = register("polished_schist_bricks", new Block(FabricBlockSettings.copyOf(SCHIST).sounds(TwigsSoundEvents.SCHIST_BRICKS))); - public static final Block POLISHED_SCHIST_BRICK_STAIRS = register("polished_schist_brick_stairs", new StairBlock(POLISHED_SCHIST_BRICKS.defaultBlockState(), FabricBlockSettings.copyOf(POLISHED_SCHIST_BRICKS))); - public static final Block POLISHED_SCHIST_BRICK_SLAB = register("polished_schist_brick_slab", new SlabBlock(FabricBlockSettings.copyOf(POLISHED_SCHIST_BRICKS))); - public static final Block POLISHED_SCHIST_BRICK_WALL = register("polished_schist_brick_wall", new WallBlock(FabricBlockSettings.copyOf(POLISHED_SCHIST_BRICKS))); - public static final Block CRACKED_POLISHED_SCHIST_BRICKS = register("cracked_polished_schist_bricks", new Block(FabricBlockSettings.copyOf(POLISHED_SCHIST_BRICKS))); + public static final Block SCHIST = register("schist", new Block(BlockBehaviour.Properties.of().mapColor(DyeColor.WHITE).requiresCorrectToolForDrops().strength(1F).sound(TwigsSoundEvents.SCHIST))); + public static final Block SCHIST_STAIRS = register("schist_stairs", new StairBlock(SCHIST.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(SCHIST))); + public static final Block SCHIST_SLAB = register("schist_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(SCHIST))); + public static final Block SCHIST_WALL = register("schist_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(SCHIST))); + public static final Block POLISHED_SCHIST = register("polished_schist", new Block(BlockBehaviour.Properties.ofFullCopy(SCHIST))); + public static final Block POLISHED_SCHIST_STAIRS = register("polished_schist_stairs", new StairBlock(POLISHED_SCHIST.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(POLISHED_SCHIST))); + public static final Block POLISHED_SCHIST_SLAB = register("polished_schist_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(POLISHED_SCHIST))); + public static final Block POLISHED_SCHIST_BRICKS = register("polished_schist_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(SCHIST).sound(TwigsSoundEvents.SCHIST_BRICKS))); + public static final Block POLISHED_SCHIST_BRICK_STAIRS = register("polished_schist_brick_stairs", new StairBlock(POLISHED_SCHIST_BRICKS.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(POLISHED_SCHIST_BRICKS))); + public static final Block POLISHED_SCHIST_BRICK_SLAB = register("polished_schist_brick_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(POLISHED_SCHIST_BRICKS))); + public static final Block POLISHED_SCHIST_BRICK_WALL = register("polished_schist_brick_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(POLISHED_SCHIST_BRICKS))); + public static final Block CRACKED_POLISHED_SCHIST_BRICKS = register("cracked_polished_schist_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(POLISHED_SCHIST_BRICKS))); //rhyolite blocks - public static final Block RHYOLITE = register("rhyolite", new RotatedPillarBlock(FabricBlockSettings.of().mapColor(DyeColor.BROWN).requiresCorrectToolForDrops().strength(1.5F).sound(TwigsSoundEvents.RHYOLITE))); - public static final Block RHYOLITE_STAIRS = register("rhyolite_stairs", new StairBlock(RHYOLITE.defaultBlockState(), FabricBlockSettings.copyOf(RHYOLITE))); - public static final Block RHYOLITE_SLAB = register("rhyolite_slab", new SlabBlock(FabricBlockSettings.copyOf(RHYOLITE))); - public static final Block RHYOLITE_WALL = register("rhyolite_wall", new WallBlock(FabricBlockSettings.copyOf(RHYOLITE))); - public static final Block POLISHED_RHYOLITE = register("polished_rhyolite", new Block(FabricBlockSettings.copyOf(RHYOLITE))); - public static final Block POLISHED_RHYOLITE_STAIRS = register("polished_rhyolite_stairs", new StairBlock(POLISHED_RHYOLITE.defaultBlockState(), FabricBlockSettings.copyOf(POLISHED_RHYOLITE))); - public static final Block POLISHED_RHYOLITE_SLAB = register("polished_rhyolite_slab", new SlabBlock(FabricBlockSettings.copyOf(POLISHED_RHYOLITE))); - public static final Block POLISHED_RHYOLITE_BRICKS = register("polished_rhyolite_bricks", new Block(FabricBlockSettings.copyOf(RHYOLITE).sounds(TwigsSoundEvents.RHYOLITE_BRICKS))); - public static final Block POLISHED_RHYOLITE_BRICK_STAIRS = register("polished_rhyolite_brick_stairs", new StairBlock(POLISHED_RHYOLITE_BRICKS.defaultBlockState(), FabricBlockSettings.copyOf(POLISHED_RHYOLITE_BRICKS))); - public static final Block POLISHED_RHYOLITE_BRICK_SLAB = register("polished_rhyolite_brick_slab", new SlabBlock(FabricBlockSettings.copyOf(POLISHED_RHYOLITE_BRICKS))); - public static final Block POLISHED_RHYOLITE_BRICK_WALL = register("polished_rhyolite_brick_wall", new WallBlock(FabricBlockSettings.copyOf(POLISHED_RHYOLITE_BRICKS))); - public static final Block CRACKED_POLISHED_RHYOLITE_BRICKS = register("cracked_polished_rhyolite_bricks", new Block(FabricBlockSettings.copyOf(POLISHED_RHYOLITE_BRICKS))); + public static final Block RHYOLITE = register("rhyolite", new RotatedPillarBlock(BlockBehaviour.Properties.of().mapColor(DyeColor.BROWN).requiresCorrectToolForDrops().strength(1.5F).sound(TwigsSoundEvents.RHYOLITE))); + public static final Block RHYOLITE_STAIRS = register("rhyolite_stairs", new StairBlock(RHYOLITE.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(RHYOLITE))); + public static final Block RHYOLITE_SLAB = register("rhyolite_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(RHYOLITE))); + public static final Block RHYOLITE_WALL = register("rhyolite_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(RHYOLITE))); + public static final Block POLISHED_RHYOLITE = register("polished_rhyolite", new Block(BlockBehaviour.Properties.ofFullCopy(RHYOLITE))); + public static final Block POLISHED_RHYOLITE_STAIRS = register("polished_rhyolite_stairs", new StairBlock(POLISHED_RHYOLITE.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(POLISHED_RHYOLITE))); + public static final Block POLISHED_RHYOLITE_SLAB = register("polished_rhyolite_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(POLISHED_RHYOLITE))); + public static final Block POLISHED_RHYOLITE_BRICKS = register("polished_rhyolite_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(RHYOLITE).sound(TwigsSoundEvents.RHYOLITE_BRICKS))); + public static final Block POLISHED_RHYOLITE_BRICK_STAIRS = register("polished_rhyolite_brick_stairs", new StairBlock(POLISHED_RHYOLITE_BRICKS.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(POLISHED_RHYOLITE_BRICKS))); + public static final Block POLISHED_RHYOLITE_BRICK_SLAB = register("polished_rhyolite_brick_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(POLISHED_RHYOLITE_BRICKS))); + public static final Block POLISHED_RHYOLITE_BRICK_WALL = register("polished_rhyolite_brick_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(POLISHED_RHYOLITE_BRICKS))); + public static final Block CRACKED_POLISHED_RHYOLITE_BRICKS = register("cracked_polished_rhyolite_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(POLISHED_RHYOLITE_BRICKS))); //bloodstone blocks - public static final Block BLOODSTONE = register("bloodstone", new Block(FabricBlockSettings.of().mapColor(DyeColor.GRAY).requiresCorrectToolForDrops().strength(1F).sound(TwigsSoundEvents.BLOODSTONE))); - public static final Block BLOODSTONE_STAIRS = register("bloodstone_stairs", new StairBlock(BLOODSTONE.defaultBlockState(), FabricBlockSettings.copyOf(BLOODSTONE))); - public static final Block BLOODSTONE_SLAB = register("bloodstone_slab", new SlabBlock(FabricBlockSettings.copyOf(BLOODSTONE))); - public static final Block BLOODSTONE_WALL = register("bloodstone_wall", new WallBlock(FabricBlockSettings.copyOf(BLOODSTONE))); - public static final Block POLISHED_BLOODSTONE = register("polished_bloodstone", new Block(FabricBlockSettings.copyOf(BLOODSTONE))); - public static final Block POLISHED_BLOODSTONE_STAIRS = register("polished_bloodstone_stairs", new StairBlock(POLISHED_BLOODSTONE.defaultBlockState(), FabricBlockSettings.copyOf(POLISHED_BLOODSTONE))); - public static final Block POLISHED_BLOODSTONE_SLAB = register("polished_bloodstone_slab", new SlabBlock(FabricBlockSettings.copyOf(POLISHED_BLOODSTONE))); - public static final Block POLISHED_BLOODSTONE_BRICKS = register("polished_bloodstone_bricks", new Block(FabricBlockSettings.copyOf(BLOODSTONE).sounds(TwigsSoundEvents.BLOODSTONE_BRICKS))); - public static final Block POLISHED_BLOODSTONE_BRICK_STAIRS = register("polished_bloodstone_brick_stairs", new StairBlock(POLISHED_BLOODSTONE_BRICKS.defaultBlockState(), FabricBlockSettings.copyOf(POLISHED_BLOODSTONE_BRICKS))); - public static final Block POLISHED_BLOODSTONE_BRICK_SLAB = register("polished_bloodstone_brick_slab", new SlabBlock(FabricBlockSettings.copyOf(POLISHED_BLOODSTONE_BRICKS))); - public static final Block POLISHED_BLOODSTONE_BRICK_WALL = register("polished_bloodstone_brick_wall", new WallBlock(FabricBlockSettings.copyOf(POLISHED_BLOODSTONE_BRICKS))); - public static final Block CRACKED_POLISHED_BLOODSTONE_BRICKS = register("cracked_polished_bloodstone_bricks", new Block(FabricBlockSettings.copyOf(POLISHED_BLOODSTONE_BRICKS))); + public static final Block BLOODSTONE = register("bloodstone", new Block(BlockBehaviour.Properties.of().mapColor(DyeColor.GRAY).requiresCorrectToolForDrops().strength(1F).sound(TwigsSoundEvents.BLOODSTONE))); + public static final Block BLOODSTONE_STAIRS = register("bloodstone_stairs", new StairBlock(BLOODSTONE.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(BLOODSTONE))); + public static final Block BLOODSTONE_SLAB = register("bloodstone_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(BLOODSTONE))); + public static final Block BLOODSTONE_WALL = register("bloodstone_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(BLOODSTONE))); + public static final Block POLISHED_BLOODSTONE = register("polished_bloodstone", new Block(BlockBehaviour.Properties.ofFullCopy(BLOODSTONE))); + public static final Block POLISHED_BLOODSTONE_STAIRS = register("polished_bloodstone_stairs", new StairBlock(POLISHED_BLOODSTONE.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(POLISHED_BLOODSTONE))); + public static final Block POLISHED_BLOODSTONE_SLAB = register("polished_bloodstone_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(POLISHED_BLOODSTONE))); + public static final Block POLISHED_BLOODSTONE_BRICKS = register("polished_bloodstone_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(BLOODSTONE).sound(TwigsSoundEvents.BLOODSTONE_BRICKS))); + public static final Block POLISHED_BLOODSTONE_BRICK_STAIRS = register("polished_bloodstone_brick_stairs", new StairBlock(POLISHED_BLOODSTONE_BRICKS.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(POLISHED_BLOODSTONE_BRICKS))); + public static final Block POLISHED_BLOODSTONE_BRICK_SLAB = register("polished_bloodstone_brick_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(POLISHED_BLOODSTONE_BRICKS))); + public static final Block POLISHED_BLOODSTONE_BRICK_WALL = register("polished_bloodstone_brick_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(POLISHED_BLOODSTONE_BRICKS))); + public static final Block CRACKED_POLISHED_BLOODSTONE_BRICKS = register("cracked_polished_bloodstone_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(POLISHED_BLOODSTONE_BRICKS))); //silt blocks - public static final Block SILT = register("silt", new RotatedPillarBlock(FabricBlockSettings.copyOf(Blocks.CLAY).mapColor(DyeColor.BROWN).sound(TwigsSoundEvents.SILT))); - public static final Block SILT_BRICKS = register("silt_bricks", new Block(FabricBlockSettings.copyOf(BRICKS).mapColor(DyeColor.YELLOW))); - public static final Block SILT_BRICK_STAIRS = register("silt_brick_stairs", new StairBlock(SILT_BRICKS.defaultBlockState(), FabricBlockSettings.copyOf(SILT_BRICKS))); - public static final Block SILT_BRICK_SLAB = register("silt_brick_slab", new SlabBlock(FabricBlockSettings.copyOf(SILT_BRICKS))); - public static final Block SILT_BRICK_WALL = register("silt_brick_wall", new WallBlock(FabricBlockSettings.copyOf(SILT_BRICKS))); - public static final Block MIXED_SILT_BRICKS = register("mixed_silt_bricks", new Block(FabricBlockSettings.copyOf(SILT_BRICKS))); - public static final Block CHISELED_SILT_BRICKS = register("chiseled_silt_bricks", new FacingBlock(FabricBlockSettings.copyOf(SILT_BRICKS))); - public static final Block CRACKED_SILT_BRICKS = register("cracked_silt_bricks", new Block(FabricBlockSettings.copyOf(SILT_BRICKS))); - public static final Block SILT_BRICK_TRAIL = register("silt_brick_trail", new BrickTrailBlock(FabricBlockSettings.copyOf(SILT_BRICKS).noCollission().noOcclusion().instabreak())); - - public static final Block SILT_POT = register("silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(Blocks.TERRACOTTA).strength(0.5f, 2f).pushReaction(PushReaction.NORMAL))); - public static final Block WHITE_SILT_POT = register("white_silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(SILT_POT).mapColor(MapColor.TERRACOTTA_WHITE))); - public static final Block ORANGE_SILT_POT = register("orange_silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(SILT_POT).mapColor(MapColor.COLOR_ORANGE))); - public static final Block MAGENTA_SILT_POT = register("magenta_silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(SILT_POT).mapColor(MapColor.COLOR_MAGENTA))); - public static final Block LIGHT_BLUE_SILT_POT = register("light_blue_silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(SILT_POT).mapColor(MapColor.COLOR_LIGHT_BLUE))); - public static final Block YELLOW_SILT_POT = register("yellow_silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(SILT_POT).mapColor(MapColor.COLOR_YELLOW))); - public static final Block LIME_SILT_POT = register("lime_silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(SILT_POT).mapColor(MapColor.COLOR_LIGHT_GREEN))); - public static final Block PINK_SILT_POT = register("pink_silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(SILT_POT).mapColor(MapColor.COLOR_PINK))); - public static final Block GRAY_SILT_POT = register("gray_silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(SILT_POT).mapColor(MapColor.COLOR_GRAY))); - public static final Block LIGHT_GRAY_SILT_POT = register("light_gray_silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(SILT_POT).mapColor(MapColor.COLOR_LIGHT_GRAY))); - public static final Block CYAN_SILT_POT = register("cyan_silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(SILT_POT).mapColor(MapColor.COLOR_CYAN))); - public static final Block PURPLE_SILT_POT = register("purple_silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(SILT_POT).mapColor(MapColor.COLOR_PURPLE))); - public static final Block BLUE_SILT_POT = register("blue_silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(SILT_POT).mapColor(MapColor.COLOR_BLUE))); - public static final Block BROWN_SILT_POT = register("brown_silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(SILT_POT).mapColor(MapColor.COLOR_BROWN))); - public static final Block GREEN_SILT_POT = register("green_silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(SILT_POT).mapColor(MapColor.COLOR_GREEN))); - public static final Block RED_SILT_POT = register("red_silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(SILT_POT).mapColor(MapColor.COLOR_RED))); - public static final Block BLACK_SILT_POT = register("black_silt_pot", new SiltPotBlock(FabricBlockSettings.copyOf(SILT_POT).mapColor(MapColor.COLOR_BLACK))); - - public static final Block PACKED_SILT = register("packed_silt", new Block(FabricBlockSettings.copyOf(Blocks.TERRACOTTA).sounds(TwigsSoundEvents.PACKED_SILT))); - public static final Block WHITE_PACKED_SILT = register("white_packed_silt", new Block(FabricBlockSettings.copyOf(PACKED_SILT).mapColor(MapColor.TERRACOTTA_WHITE))); - public static final Block ORANGE_PACKED_SILT = register("orange_packed_silt", new Block(FabricBlockSettings.copyOf(PACKED_SILT).mapColor(MapColor.COLOR_ORANGE))); - public static final Block MAGENTA_PACKED_SILT = register("magenta_packed_silt", new Block(FabricBlockSettings.copyOf(PACKED_SILT).mapColor(MapColor.COLOR_MAGENTA))); - public static final Block LIGHT_BLUE_PACKED_SILT = register("light_blue_packed_silt", new Block(FabricBlockSettings.copyOf(PACKED_SILT).mapColor(MapColor.COLOR_LIGHT_BLUE))); - public static final Block YELLOW_PACKED_SILT = register("yellow_packed_silt", new Block(FabricBlockSettings.copyOf(PACKED_SILT).mapColor(MapColor.COLOR_YELLOW))); - public static final Block LIME_PACKED_SILT = register("lime_packed_silt", new Block(FabricBlockSettings.copyOf(PACKED_SILT).mapColor(MapColor.COLOR_LIGHT_GREEN))); - public static final Block PINK_PACKED_SILT = register("pink_packed_silt", new Block(FabricBlockSettings.copyOf(PACKED_SILT).mapColor(MapColor.COLOR_PINK))); - public static final Block GRAY_PACKED_SILT = register("gray_packed_silt", new Block(FabricBlockSettings.copyOf(PACKED_SILT).mapColor(MapColor.COLOR_GRAY))); - public static final Block LIGHT_GRAY_PACKED_SILT = register("light_gray_packed_silt", new Block(FabricBlockSettings.copyOf(PACKED_SILT).mapColor(MapColor.COLOR_LIGHT_GRAY))); - public static final Block CYAN_PACKED_SILT = register("cyan_packed_silt", new Block(FabricBlockSettings.copyOf(PACKED_SILT).mapColor(MapColor.COLOR_CYAN))); - public static final Block PURPLE_PACKED_SILT = register("purple_packed_silt", new Block(FabricBlockSettings.copyOf(PACKED_SILT).mapColor(MapColor.COLOR_PURPLE))); - public static final Block BLUE_PACKED_SILT = register("blue_packed_silt", new Block(FabricBlockSettings.copyOf(PACKED_SILT).mapColor(MapColor.COLOR_BLUE))); - public static final Block BROWN_PACKED_SILT = register("brown_packed_silt", new Block(FabricBlockSettings.copyOf(PACKED_SILT).mapColor(MapColor.COLOR_BROWN))); - public static final Block GREEN_PACKED_SILT = register("green_packed_silt", new Block(FabricBlockSettings.copyOf(PACKED_SILT).mapColor(MapColor.COLOR_GREEN))); - public static final Block RED_PACKED_SILT = register("red_packed_silt", new Block(FabricBlockSettings.copyOf(PACKED_SILT).mapColor(MapColor.COLOR_RED))); - public static final Block BLACK_PACKED_SILT = register("black_packed_silt", new Block(FabricBlockSettings.copyOf(PACKED_SILT).mapColor(MapColor.COLOR_BLACK))); - - public static final Block SILT_SHINGLES = register("silt_shingles", new Block(FabricBlockSettings.copyOf(Blocks.TERRACOTTA).sounds(TwigsSoundEvents.SILT_SHINGLES))); - public static final Block WHITE_SILT_SHINGLES = register("white_silt_shingles", new Block(FabricBlockSettings.copyOf(SILT_SHINGLES).mapColor(MapColor.TERRACOTTA_WHITE))); - public static final Block ORANGE_SILT_SHINGLES = register("orange_silt_shingles", new Block(FabricBlockSettings.copyOf(SILT_SHINGLES).mapColor(MapColor.COLOR_ORANGE))); - public static final Block MAGENTA_SILT_SHINGLES = register("magenta_silt_shingles", new Block(FabricBlockSettings.copyOf(SILT_SHINGLES).mapColor(MapColor.COLOR_MAGENTA))); - public static final Block LIGHT_BLUE_SILT_SHINGLES = register("light_blue_silt_shingles", new Block(FabricBlockSettings.copyOf(SILT_SHINGLES).mapColor(MapColor.COLOR_LIGHT_BLUE))); - public static final Block YELLOW_SILT_SHINGLES = register("yellow_silt_shingles", new Block(FabricBlockSettings.copyOf(SILT_SHINGLES).mapColor(MapColor.COLOR_YELLOW))); - public static final Block LIME_SILT_SHINGLES = register("lime_silt_shingles", new Block(FabricBlockSettings.copyOf(SILT_SHINGLES).mapColor(MapColor.COLOR_LIGHT_GREEN))); - public static final Block PINK_SILT_SHINGLES = register("pink_silt_shingles", new Block(FabricBlockSettings.copyOf(SILT_SHINGLES).mapColor(MapColor.COLOR_PINK))); - public static final Block GRAY_SILT_SHINGLES = register("gray_silt_shingles", new Block(FabricBlockSettings.copyOf(SILT_SHINGLES).mapColor(MapColor.COLOR_GRAY))); - public static final Block LIGHT_GRAY_SILT_SHINGLES = register("light_gray_silt_shingles", new Block(FabricBlockSettings.copyOf(SILT_SHINGLES).mapColor(MapColor.COLOR_LIGHT_GRAY))); - public static final Block CYAN_SILT_SHINGLES = register("cyan_silt_shingles", new Block(FabricBlockSettings.copyOf(SILT_SHINGLES).mapColor(MapColor.COLOR_CYAN))); - public static final Block PURPLE_SILT_SHINGLES = register("purple_silt_shingles", new Block(FabricBlockSettings.copyOf(SILT_SHINGLES).mapColor(MapColor.COLOR_PURPLE))); - public static final Block BLUE_SILT_SHINGLES = register("blue_silt_shingles", new Block(FabricBlockSettings.copyOf(SILT_SHINGLES).mapColor(MapColor.COLOR_BLUE))); - public static final Block BROWN_SILT_SHINGLES = register("brown_silt_shingles", new Block(FabricBlockSettings.copyOf(SILT_SHINGLES).mapColor(MapColor.COLOR_BROWN))); - public static final Block GREEN_SILT_SHINGLES = register("green_silt_shingles", new Block(FabricBlockSettings.copyOf(SILT_SHINGLES).mapColor(MapColor.COLOR_GREEN))); - public static final Block RED_SILT_SHINGLES = register("red_silt_shingles", new Block(FabricBlockSettings.copyOf(SILT_SHINGLES).mapColor(MapColor.COLOR_RED))); - public static final Block BLACK_SILT_SHINGLES = register("black_silt_shingles", new Block(FabricBlockSettings.copyOf(SILT_SHINGLES).mapColor(MapColor.COLOR_BLACK))); - - public static final Block SILT_SHINGLE_STAIRS = register("silt_shingle_stairs", new StairBlock(SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(SILT_SHINGLES))); - public static final Block WHITE_SILT_SHINGLE_STAIRS = register("white_silt_shingle_stairs", new StairBlock(WHITE_SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(WHITE_SILT_SHINGLES))); - public static final Block ORANGE_SILT_SHINGLE_STAIRS = register("orange_silt_shingle_stairs", new StairBlock(ORANGE_SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(ORANGE_SILT_SHINGLES))); - public static final Block MAGENTA_SILT_SHINGLE_STAIRS = register("magenta_silt_shingle_stairs", new StairBlock(MAGENTA_SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(MAGENTA_SILT_SHINGLES))); - public static final Block LIGHT_BLUE_SILT_SHINGLE_STAIRS = register("light_blue_silt_shingle_stairs", new StairBlock(LIGHT_BLUE_SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(LIGHT_BLUE_SILT_SHINGLES))); - public static final Block YELLOW_SILT_SHINGLE_STAIRS = register("yellow_silt_shingle_stairs", new StairBlock(YELLOW_SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(YELLOW_SILT_SHINGLES))); - public static final Block LIME_SILT_SHINGLE_STAIRS = register("lime_silt_shingle_stairs", new StairBlock(LIME_SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(LIME_SILT_SHINGLES))); - public static final Block PINK_SILT_SHINGLE_STAIRS = register("pink_silt_shingle_stairs", new StairBlock(PINK_SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(PINK_SILT_SHINGLES))); - public static final Block GRAY_SILT_SHINGLE_STAIRS = register("gray_silt_shingle_stairs", new StairBlock(GRAY_SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(GRAY_SILT_SHINGLES))); - public static final Block LIGHT_GRAY_SILT_SHINGLE_STAIRS = register("light_gray_silt_shingle_stairs", new StairBlock(LIGHT_GRAY_SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(LIGHT_GRAY_SILT_SHINGLES))); - public static final Block CYAN_SILT_SHINGLE_STAIRS = register("cyan_silt_shingle_stairs", new StairBlock(CYAN_SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(CYAN_SILT_SHINGLES))); - public static final Block PURPLE_SILT_SHINGLE_STAIRS = register("purple_silt_shingle_stairs", new StairBlock(PURPLE_SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(PURPLE_SILT_SHINGLES))); - public static final Block BLUE_SILT_SHINGLE_STAIRS = register("blue_silt_shingle_stairs", new StairBlock(BLUE_SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(BLUE_SILT_SHINGLES))); - public static final Block BROWN_SILT_SHINGLE_STAIRS = register("brown_silt_shingle_stairs", new StairBlock(BROWN_SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(BROWN_SILT_SHINGLES))); - public static final Block GREEN_SILT_SHINGLE_STAIRS = register("green_silt_shingle_stairs", new StairBlock(GREEN_SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(GREEN_SILT_SHINGLES))); - public static final Block RED_SILT_SHINGLE_STAIRS = register("red_silt_shingle_stairs", new StairBlock(RED_SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(RED_SILT_SHINGLES))); - public static final Block BLACK_SILT_SHINGLE_STAIRS = register("black_silt_shingle_stairs", new StairBlock(BLACK_SILT_SHINGLES.defaultBlockState(), FabricBlockSettings.copyOf(BLACK_SILT_SHINGLES))); - - public static final Block SILT_SHINGLE_SLAB = register("silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(SILT_SHINGLES))); - public static final Block WHITE_SILT_SHINGLE_SLAB = register("white_silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(WHITE_SILT_SHINGLES))); - public static final Block ORANGE_SILT_SHINGLE_SLAB = register("orange_silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(ORANGE_SILT_SHINGLES))); - public static final Block MAGENTA_SILT_SHINGLE_SLAB = register("magenta_silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(MAGENTA_SILT_SHINGLES))); - public static final Block LIGHT_BLUE_SILT_SHINGLE_SLAB = register("light_blue_silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(LIGHT_BLUE_SILT_SHINGLES))); - public static final Block YELLOW_SILT_SHINGLE_SLAB = register("yellow_silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(YELLOW_SILT_SHINGLES))); - public static final Block LIME_SILT_SHINGLE_SLAB = register("lime_silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(LIME_SILT_SHINGLES))); - public static final Block PINK_SILT_SHINGLE_SLAB = register("pink_silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(PINK_SILT_SHINGLES))); - public static final Block GRAY_SILT_SHINGLE_SLAB = register("gray_silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(GRAY_SILT_SHINGLES))); - public static final Block LIGHT_GRAY_SILT_SHINGLE_SLAB = register("light_gray_silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(LIGHT_GRAY_SILT_SHINGLES))); - public static final Block CYAN_SILT_SHINGLE_SLAB = register("cyan_silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(CYAN_SILT_SHINGLES))); - public static final Block PURPLE_SILT_SHINGLE_SLAB = register("purple_silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(PURPLE_SILT_SHINGLES))); - public static final Block BLUE_SILT_SHINGLE_SLAB = register("blue_silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(BLUE_SILT_SHINGLES))); - public static final Block BROWN_SILT_SHINGLE_SLAB = register("brown_silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(BROWN_SILT_SHINGLES))); - public static final Block GREEN_SILT_SHINGLE_SLAB = register("green_silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(GREEN_SILT_SHINGLES))); - public static final Block RED_SILT_SHINGLE_SLAB = register("red_silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(RED_SILT_SHINGLES))); - public static final Block BLACK_SILT_SHINGLE_SLAB = register("black_silt_shingle_slab", new SlabBlock(FabricBlockSettings.copyOf(BLACK_SILT_SHINGLES))); - - public static final Block SILT_SHINGLE_WALL = register("silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(SILT_SHINGLES))); - public static final Block WHITE_SILT_SHINGLE_WALL = register("white_silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(WHITE_SILT_SHINGLES))); - public static final Block ORANGE_SILT_SHINGLE_WALL = register("orange_silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(ORANGE_SILT_SHINGLES))); - public static final Block MAGENTA_SILT_SHINGLE_WALL = register("magenta_silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(MAGENTA_SILT_SHINGLES))); - public static final Block LIGHT_BLUE_SILT_SHINGLE_WALL = register("light_blue_silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(LIGHT_BLUE_SILT_SHINGLES))); - public static final Block YELLOW_SILT_SHINGLE_WALL = register("yellow_silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(YELLOW_SILT_SHINGLES))); - public static final Block LIME_SILT_SHINGLE_WALL = register("lime_silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(LIME_SILT_SHINGLES))); - public static final Block PINK_SILT_SHINGLE_WALL = register("pink_silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(PINK_SILT_SHINGLES))); - public static final Block GRAY_SILT_SHINGLE_WALL = register("gray_silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(GRAY_SILT_SHINGLES))); - public static final Block LIGHT_GRAY_SILT_SHINGLE_WALL = register("light_gray_silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(LIGHT_GRAY_SILT_SHINGLES))); - public static final Block CYAN_SILT_SHINGLE_WALL = register("cyan_silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(CYAN_SILT_SHINGLES))); - public static final Block PURPLE_SILT_SHINGLE_WALL = register("purple_silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(PURPLE_SILT_SHINGLES))); - public static final Block BLUE_SILT_SHINGLE_WALL = register("blue_silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(BLUE_SILT_SHINGLES))); - public static final Block BROWN_SILT_SHINGLE_WALL = register("brown_silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(BROWN_SILT_SHINGLES))); - public static final Block GREEN_SILT_SHINGLE_WALL = register("green_silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(GREEN_SILT_SHINGLES))); - public static final Block RED_SILT_SHINGLE_WALL = register("red_silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(RED_SILT_SHINGLES))); - public static final Block BLACK_SILT_SHINGLE_WALL = register("black_silt_shingle_wall", new WallBlock(FabricBlockSettings.copyOf(BLACK_SILT_SHINGLES))); + public static final Block SILT = register("silt", new RotatedPillarBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.CLAY).mapColor(DyeColor.BROWN).sound(TwigsSoundEvents.SILT))); + public static final Block SILT_BRICKS = register("silt_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(BRICKS).mapColor(DyeColor.YELLOW))); + public static final Block SILT_BRICK_STAIRS = register("silt_brick_stairs", new StairBlock(SILT_BRICKS.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(SILT_BRICKS))); + public static final Block SILT_BRICK_SLAB = register("silt_brick_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(SILT_BRICKS))); + public static final Block SILT_BRICK_WALL = register("silt_brick_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(SILT_BRICKS))); + public static final Block MIXED_SILT_BRICKS = register("mixed_silt_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_BRICKS))); + public static final Block CHISELED_SILT_BRICKS = register("chiseled_silt_bricks", new FacingBlock(BlockBehaviour.Properties.ofFullCopy(SILT_BRICKS))); + public static final Block CRACKED_SILT_BRICKS = register("cracked_silt_bricks", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_BRICKS))); + public static final Block SILT_BRICK_TRAIL = register("silt_brick_trail", new BrickTrailBlock(BlockBehaviour.Properties.ofFullCopy(SILT_BRICKS).noCollission().noOcclusion().instabreak())); + + public static final Block SILT_POT = register("silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(Blocks.TERRACOTTA).strength(0.5f, 2f).pushReaction(PushReaction.NORMAL))); + public static final Block WHITE_SILT_POT = register("white_silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(SILT_POT).mapColor(MapColor.TERRACOTTA_WHITE))); + public static final Block ORANGE_SILT_POT = register("orange_silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(SILT_POT).mapColor(MapColor.COLOR_ORANGE))); + public static final Block MAGENTA_SILT_POT = register("magenta_silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(SILT_POT).mapColor(MapColor.COLOR_MAGENTA))); + public static final Block LIGHT_BLUE_SILT_POT = register("light_blue_silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(SILT_POT).mapColor(MapColor.COLOR_LIGHT_BLUE))); + public static final Block YELLOW_SILT_POT = register("yellow_silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(SILT_POT).mapColor(MapColor.COLOR_YELLOW))); + public static final Block LIME_SILT_POT = register("lime_silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(SILT_POT).mapColor(MapColor.COLOR_LIGHT_GREEN))); + public static final Block PINK_SILT_POT = register("pink_silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(SILT_POT).mapColor(MapColor.COLOR_PINK))); + public static final Block GRAY_SILT_POT = register("gray_silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(SILT_POT).mapColor(MapColor.COLOR_GRAY))); + public static final Block LIGHT_GRAY_SILT_POT = register("light_gray_silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(SILT_POT).mapColor(MapColor.COLOR_LIGHT_GRAY))); + public static final Block CYAN_SILT_POT = register("cyan_silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(SILT_POT).mapColor(MapColor.COLOR_CYAN))); + public static final Block PURPLE_SILT_POT = register("purple_silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(SILT_POT).mapColor(MapColor.COLOR_PURPLE))); + public static final Block BLUE_SILT_POT = register("blue_silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(SILT_POT).mapColor(MapColor.COLOR_BLUE))); + public static final Block BROWN_SILT_POT = register("brown_silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(SILT_POT).mapColor(MapColor.COLOR_BROWN))); + public static final Block GREEN_SILT_POT = register("green_silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(SILT_POT).mapColor(MapColor.COLOR_GREEN))); + public static final Block RED_SILT_POT = register("red_silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(SILT_POT).mapColor(MapColor.COLOR_RED))); + public static final Block BLACK_SILT_POT = register("black_silt_pot", new SiltPotBlock(BlockBehaviour.Properties.ofFullCopy(SILT_POT).mapColor(MapColor.COLOR_BLACK))); + + public static final Block PACKED_SILT = register("packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(Blocks.TERRACOTTA).sound(TwigsSoundEvents.PACKED_SILT))); + public static final Block WHITE_PACKED_SILT = register("white_packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(PACKED_SILT).mapColor(MapColor.TERRACOTTA_WHITE))); + public static final Block ORANGE_PACKED_SILT = register("orange_packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(PACKED_SILT).mapColor(MapColor.COLOR_ORANGE))); + public static final Block MAGENTA_PACKED_SILT = register("magenta_packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(PACKED_SILT).mapColor(MapColor.COLOR_MAGENTA))); + public static final Block LIGHT_BLUE_PACKED_SILT = register("light_blue_packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(PACKED_SILT).mapColor(MapColor.COLOR_LIGHT_BLUE))); + public static final Block YELLOW_PACKED_SILT = register("yellow_packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(PACKED_SILT).mapColor(MapColor.COLOR_YELLOW))); + public static final Block LIME_PACKED_SILT = register("lime_packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(PACKED_SILT).mapColor(MapColor.COLOR_LIGHT_GREEN))); + public static final Block PINK_PACKED_SILT = register("pink_packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(PACKED_SILT).mapColor(MapColor.COLOR_PINK))); + public static final Block GRAY_PACKED_SILT = register("gray_packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(PACKED_SILT).mapColor(MapColor.COLOR_GRAY))); + public static final Block LIGHT_GRAY_PACKED_SILT = register("light_gray_packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(PACKED_SILT).mapColor(MapColor.COLOR_LIGHT_GRAY))); + public static final Block CYAN_PACKED_SILT = register("cyan_packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(PACKED_SILT).mapColor(MapColor.COLOR_CYAN))); + public static final Block PURPLE_PACKED_SILT = register("purple_packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(PACKED_SILT).mapColor(MapColor.COLOR_PURPLE))); + public static final Block BLUE_PACKED_SILT = register("blue_packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(PACKED_SILT).mapColor(MapColor.COLOR_BLUE))); + public static final Block BROWN_PACKED_SILT = register("brown_packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(PACKED_SILT).mapColor(MapColor.COLOR_BROWN))); + public static final Block GREEN_PACKED_SILT = register("green_packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(PACKED_SILT).mapColor(MapColor.COLOR_GREEN))); + public static final Block RED_PACKED_SILT = register("red_packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(PACKED_SILT).mapColor(MapColor.COLOR_RED))); + public static final Block BLACK_PACKED_SILT = register("black_packed_silt", new Block(BlockBehaviour.Properties.ofFullCopy(PACKED_SILT).mapColor(MapColor.COLOR_BLACK))); + + public static final Block SILT_SHINGLES = register("silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(Blocks.TERRACOTTA).sound(TwigsSoundEvents.SILT_SHINGLES))); + public static final Block WHITE_SILT_SHINGLES = register("white_silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES).mapColor(MapColor.TERRACOTTA_WHITE))); + public static final Block ORANGE_SILT_SHINGLES = register("orange_silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES).mapColor(MapColor.COLOR_ORANGE))); + public static final Block MAGENTA_SILT_SHINGLES = register("magenta_silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES).mapColor(MapColor.COLOR_MAGENTA))); + public static final Block LIGHT_BLUE_SILT_SHINGLES = register("light_blue_silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES).mapColor(MapColor.COLOR_LIGHT_BLUE))); + public static final Block YELLOW_SILT_SHINGLES = register("yellow_silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES).mapColor(MapColor.COLOR_YELLOW))); + public static final Block LIME_SILT_SHINGLES = register("lime_silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES).mapColor(MapColor.COLOR_LIGHT_GREEN))); + public static final Block PINK_SILT_SHINGLES = register("pink_silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES).mapColor(MapColor.COLOR_PINK))); + public static final Block GRAY_SILT_SHINGLES = register("gray_silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES).mapColor(MapColor.COLOR_GRAY))); + public static final Block LIGHT_GRAY_SILT_SHINGLES = register("light_gray_silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES).mapColor(MapColor.COLOR_LIGHT_GRAY))); + public static final Block CYAN_SILT_SHINGLES = register("cyan_silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES).mapColor(MapColor.COLOR_CYAN))); + public static final Block PURPLE_SILT_SHINGLES = register("purple_silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES).mapColor(MapColor.COLOR_PURPLE))); + public static final Block BLUE_SILT_SHINGLES = register("blue_silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES).mapColor(MapColor.COLOR_BLUE))); + public static final Block BROWN_SILT_SHINGLES = register("brown_silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES).mapColor(MapColor.COLOR_BROWN))); + public static final Block GREEN_SILT_SHINGLES = register("green_silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES).mapColor(MapColor.COLOR_GREEN))); + public static final Block RED_SILT_SHINGLES = register("red_silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES).mapColor(MapColor.COLOR_RED))); + public static final Block BLACK_SILT_SHINGLES = register("black_silt_shingles", new Block(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES).mapColor(MapColor.COLOR_BLACK))); + + public static final Block SILT_SHINGLE_STAIRS = register("silt_shingle_stairs", new StairBlock(SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES))); + public static final Block WHITE_SILT_SHINGLE_STAIRS = register("white_silt_shingle_stairs", new StairBlock(WHITE_SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(WHITE_SILT_SHINGLES))); + public static final Block ORANGE_SILT_SHINGLE_STAIRS = register("orange_silt_shingle_stairs", new StairBlock(ORANGE_SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(ORANGE_SILT_SHINGLES))); + public static final Block MAGENTA_SILT_SHINGLE_STAIRS = register("magenta_silt_shingle_stairs", new StairBlock(MAGENTA_SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(MAGENTA_SILT_SHINGLES))); + public static final Block LIGHT_BLUE_SILT_SHINGLE_STAIRS = register("light_blue_silt_shingle_stairs", new StairBlock(LIGHT_BLUE_SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(LIGHT_BLUE_SILT_SHINGLES))); + public static final Block YELLOW_SILT_SHINGLE_STAIRS = register("yellow_silt_shingle_stairs", new StairBlock(YELLOW_SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(YELLOW_SILT_SHINGLES))); + public static final Block LIME_SILT_SHINGLE_STAIRS = register("lime_silt_shingle_stairs", new StairBlock(LIME_SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(LIME_SILT_SHINGLES))); + public static final Block PINK_SILT_SHINGLE_STAIRS = register("pink_silt_shingle_stairs", new StairBlock(PINK_SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(PINK_SILT_SHINGLES))); + public static final Block GRAY_SILT_SHINGLE_STAIRS = register("gray_silt_shingle_stairs", new StairBlock(GRAY_SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(GRAY_SILT_SHINGLES))); + public static final Block LIGHT_GRAY_SILT_SHINGLE_STAIRS = register("light_gray_silt_shingle_stairs", new StairBlock(LIGHT_GRAY_SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(LIGHT_GRAY_SILT_SHINGLES))); + public static final Block CYAN_SILT_SHINGLE_STAIRS = register("cyan_silt_shingle_stairs", new StairBlock(CYAN_SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(CYAN_SILT_SHINGLES))); + public static final Block PURPLE_SILT_SHINGLE_STAIRS = register("purple_silt_shingle_stairs", new StairBlock(PURPLE_SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(PURPLE_SILT_SHINGLES))); + public static final Block BLUE_SILT_SHINGLE_STAIRS = register("blue_silt_shingle_stairs", new StairBlock(BLUE_SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(BLUE_SILT_SHINGLES))); + public static final Block BROWN_SILT_SHINGLE_STAIRS = register("brown_silt_shingle_stairs", new StairBlock(BROWN_SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(BROWN_SILT_SHINGLES))); + public static final Block GREEN_SILT_SHINGLE_STAIRS = register("green_silt_shingle_stairs", new StairBlock(GREEN_SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(GREEN_SILT_SHINGLES))); + public static final Block RED_SILT_SHINGLE_STAIRS = register("red_silt_shingle_stairs", new StairBlock(RED_SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(RED_SILT_SHINGLES))); + public static final Block BLACK_SILT_SHINGLE_STAIRS = register("black_silt_shingle_stairs", new StairBlock(BLACK_SILT_SHINGLES.defaultBlockState(), BlockBehaviour.Properties.ofFullCopy(BLACK_SILT_SHINGLES))); + + public static final Block SILT_SHINGLE_SLAB = register("silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES))); + public static final Block WHITE_SILT_SHINGLE_SLAB = register("white_silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(WHITE_SILT_SHINGLES))); + public static final Block ORANGE_SILT_SHINGLE_SLAB = register("orange_silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(ORANGE_SILT_SHINGLES))); + public static final Block MAGENTA_SILT_SHINGLE_SLAB = register("magenta_silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(MAGENTA_SILT_SHINGLES))); + public static final Block LIGHT_BLUE_SILT_SHINGLE_SLAB = register("light_blue_silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(LIGHT_BLUE_SILT_SHINGLES))); + public static final Block YELLOW_SILT_SHINGLE_SLAB = register("yellow_silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(YELLOW_SILT_SHINGLES))); + public static final Block LIME_SILT_SHINGLE_SLAB = register("lime_silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(LIME_SILT_SHINGLES))); + public static final Block PINK_SILT_SHINGLE_SLAB = register("pink_silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(PINK_SILT_SHINGLES))); + public static final Block GRAY_SILT_SHINGLE_SLAB = register("gray_silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(GRAY_SILT_SHINGLES))); + public static final Block LIGHT_GRAY_SILT_SHINGLE_SLAB = register("light_gray_silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(LIGHT_GRAY_SILT_SHINGLES))); + public static final Block CYAN_SILT_SHINGLE_SLAB = register("cyan_silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(CYAN_SILT_SHINGLES))); + public static final Block PURPLE_SILT_SHINGLE_SLAB = register("purple_silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(PURPLE_SILT_SHINGLES))); + public static final Block BLUE_SILT_SHINGLE_SLAB = register("blue_silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(BLUE_SILT_SHINGLES))); + public static final Block BROWN_SILT_SHINGLE_SLAB = register("brown_silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(BROWN_SILT_SHINGLES))); + public static final Block GREEN_SILT_SHINGLE_SLAB = register("green_silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(GREEN_SILT_SHINGLES))); + public static final Block RED_SILT_SHINGLE_SLAB = register("red_silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(RED_SILT_SHINGLES))); + public static final Block BLACK_SILT_SHINGLE_SLAB = register("black_silt_shingle_slab", new SlabBlock(BlockBehaviour.Properties.ofFullCopy(BLACK_SILT_SHINGLES))); + + public static final Block SILT_SHINGLE_WALL = register("silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(SILT_SHINGLES))); + public static final Block WHITE_SILT_SHINGLE_WALL = register("white_silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(WHITE_SILT_SHINGLES))); + public static final Block ORANGE_SILT_SHINGLE_WALL = register("orange_silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(ORANGE_SILT_SHINGLES))); + public static final Block MAGENTA_SILT_SHINGLE_WALL = register("magenta_silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(MAGENTA_SILT_SHINGLES))); + public static final Block LIGHT_BLUE_SILT_SHINGLE_WALL = register("light_blue_silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(LIGHT_BLUE_SILT_SHINGLES))); + public static final Block YELLOW_SILT_SHINGLE_WALL = register("yellow_silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(YELLOW_SILT_SHINGLES))); + public static final Block LIME_SILT_SHINGLE_WALL = register("lime_silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(LIME_SILT_SHINGLES))); + public static final Block PINK_SILT_SHINGLE_WALL = register("pink_silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(PINK_SILT_SHINGLES))); + public static final Block GRAY_SILT_SHINGLE_WALL = register("gray_silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(GRAY_SILT_SHINGLES))); + public static final Block LIGHT_GRAY_SILT_SHINGLE_WALL = register("light_gray_silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(LIGHT_GRAY_SILT_SHINGLES))); + public static final Block CYAN_SILT_SHINGLE_WALL = register("cyan_silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(CYAN_SILT_SHINGLES))); + public static final Block PURPLE_SILT_SHINGLE_WALL = register("purple_silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(PURPLE_SILT_SHINGLES))); + public static final Block BLUE_SILT_SHINGLE_WALL = register("blue_silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(BLUE_SILT_SHINGLES))); + public static final Block BROWN_SILT_SHINGLE_WALL = register("brown_silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(BROWN_SILT_SHINGLES))); + public static final Block GREEN_SILT_SHINGLE_WALL = register("green_silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(GREEN_SILT_SHINGLES))); + public static final Block RED_SILT_SHINGLE_WALL = register("red_silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(RED_SILT_SHINGLES))); + public static final Block BLACK_SILT_SHINGLE_WALL = register("black_silt_shingle_wall", new WallBlock(BlockBehaviour.Properties.ofFullCopy(BLACK_SILT_SHINGLES))); private static ToIntFunction createLampLightLevel() { - return (state) -> (Boolean)state.getValue(BlockStateProperties.LIT) ? 15 : 0; + return (state) -> (Boolean) state.getValue(BlockStateProperties.LIT) ? 15 : 0; } private static Block register(String id, Block block) { - return Registry.register(BuiltInRegistries.BLOCK, new ResourceLocation(Twigs.MOD_ID, id), block); + return Registry.register(BuiltInRegistries.BLOCK, ResourceLocation.fromNamespaceAndPath(Twigs.MOD_ID, id), block); } } diff --git a/src/main/java/com/ninni/twigs/registry/TwigsConfiguredFeatures.java b/src/main/java/com/ninni/twigs/registry/TwigsConfiguredFeatures.java index 4eab2e20..f950b825 100644 --- a/src/main/java/com/ninni/twigs/registry/TwigsConfiguredFeatures.java +++ b/src/main/java/com/ninni/twigs/registry/TwigsConfiguredFeatures.java @@ -4,7 +4,7 @@ import com.ninni.twigs.world.gen.features.config.AzaleaFlowerPatchConfig; import com.ninni.twigs.world.gen.features.config.NoiseStripConfig; import net.minecraft.core.registries.Registries; -import net.minecraft.data.worldgen.BootstapContext; +import net.minecraft.data.worldgen.BootstrapContext; import net.minecraft.data.worldgen.features.FeatureUtils; import net.minecraft.data.worldgen.placement.PlacementUtils; import net.minecraft.resources.ResourceKey; @@ -34,7 +34,7 @@ public class TwigsConfiguredFeatures { public static final ResourceKey> PATCH_PEBBLE = createKey("patch_pebble"); public static final ResourceKey> PATCH_SEASHELL = createKey("patch_seashell"); - public static void bootstrap(BootstapContext> context) { + public static void bootstrap(BootstrapContext> context) { TagMatchTest baseStoneOverworld = new TagMatchTest(BlockTags.BASE_STONE_OVERWORLD); TagMatchTest baseStoneNether = new TagMatchTest(BlockTags.BASE_STONE_NETHER); registerConfiguredFeature(context, ORE_RHYOLITE, Feature.ORE, new OreConfiguration(baseStoneOverworld, TwigsBlocks.RHYOLITE.defaultBlockState(), 45)); @@ -47,12 +47,12 @@ public static void bootstrap(BootstapContext> context) { registerConfiguredFeature(context, PATCH_SEASHELL, Feature.RANDOM_PATCH, FeatureUtils.simpleRandomPatchConfiguration(2, PlacementUtils.filtered(TwigsFeatures.WATERLOGGABLE_SIMPLE_BLOCK, new SimpleBlockConfiguration(new WeightedStateProvider(SimpleWeightedRandomList.builder().add(TwigsBlocks.OPALINE_SEASHELL.defaultBlockState(), 20).add(TwigsBlocks.TANGERINE_SEASHELL.defaultBlockState(), 20).add(TwigsBlocks.ROSEATE_SEASHELL.defaultBlockState(), 15).add(TwigsBlocks.BRONZED_SEASHELL.defaultBlockState(), 8))), BlockPredicate.ONLY_IN_AIR_OR_WATER_PREDICATE))); } - private static > void registerConfiguredFeature(BootstapContext> context, ResourceKey> resourceKey, F feature, FC featureConfiguration) { + private static > void registerConfiguredFeature(BootstrapContext> context, ResourceKey> resourceKey, F feature, FC featureConfiguration) { context.register(resourceKey, new ConfiguredFeature<>(feature, featureConfiguration)); } public static ResourceKey> createKey(String string) { - return ResourceKey.create(Registries.CONFIGURED_FEATURE, new ResourceLocation(Twigs.MOD_ID, string)); + return ResourceKey.create(Registries.CONFIGURED_FEATURE, ResourceLocation.fromNamespaceAndPath(Twigs.MOD_ID, string)); } } diff --git a/src/main/java/com/ninni/twigs/registry/TwigsCreativeModeTab.java b/src/main/java/com/ninni/twigs/registry/TwigsCreativeModeTab.java index c2be656c..df993968 100644 --- a/src/main/java/com/ninni/twigs/registry/TwigsCreativeModeTab.java +++ b/src/main/java/com/ninni/twigs/registry/TwigsCreativeModeTab.java @@ -12,7 +12,6 @@ import net.minecraft.world.item.Items; import net.minecraft.world.level.block.Blocks; -import static com.ninni.twigs.Twigs.MOD_ID; import static com.ninni.twigs.registry.TwigsItems.*; public class TwigsCreativeModeTab { @@ -213,9 +212,6 @@ public class TwigsCreativeModeTab { POLISHED_CALCITE_BRICK_SLAB, POLISHED_CALCITE_BRICK_WALL, Blocks.TUFF, - TUFF_STAIRS, - TUFF_SLAB, - TUFF_WALL, POLISHED_TUFF, POLISHED_TUFF_STAIRS, POLISHED_TUFF_SLAB, @@ -510,9 +506,6 @@ public class TwigsCreativeModeTab { output.accept(WEEPING_POLISHED_BLACKSTONE_BRICK_WALL); //tuff blocks - output.accept(TUFF_STAIRS); - output.accept(TUFF_SLAB); - output.accept(TUFF_WALL); output.accept(POLISHED_TUFF); output.accept(POLISHED_TUFF_STAIRS); output.accept(POLISHED_TUFF_SLAB); @@ -713,6 +706,6 @@ public class TwigsCreativeModeTab { ); private static CreativeModeTab register(String id, CreativeModeTab tab) { - return Registry.register(BuiltInRegistries.CREATIVE_MODE_TAB, new ResourceLocation(Twigs.MOD_ID, id), tab); + return Registry.register(BuiltInRegistries.CREATIVE_MODE_TAB, ResourceLocation.fromNamespaceAndPath(Twigs.MOD_ID, id), tab); } } diff --git a/src/main/java/com/ninni/twigs/registry/TwigsEntityTypes.java b/src/main/java/com/ninni/twigs/registry/TwigsEntityTypes.java index a7d60b38..68ae8935 100644 --- a/src/main/java/com/ninni/twigs/registry/TwigsEntityTypes.java +++ b/src/main/java/com/ninni/twigs/registry/TwigsEntityTypes.java @@ -14,7 +14,7 @@ public class TwigsEntityTypes { public static final EntityType PEBBLE = register("pebble", EntityType.Builder.of(Pebble::new, MobCategory.MISC).sized(0.25F, 0.25F).clientTrackingRange(4).updateInterval(10)); public static EntityType register(String id, EntityType.Builder builder) { - ResourceLocation resourceLocation = new ResourceLocation(Twigs.MOD_ID, id); + ResourceLocation resourceLocation = ResourceLocation.fromNamespaceAndPath(Twigs.MOD_ID, id); return Registry.register(BuiltInRegistries.ENTITY_TYPE, resourceLocation, builder.build(resourceLocation.toString())); } diff --git a/src/main/java/com/ninni/twigs/registry/TwigsFeatures.java b/src/main/java/com/ninni/twigs/registry/TwigsFeatures.java index d13bb254..59c8d9e8 100644 --- a/src/main/java/com/ninni/twigs/registry/TwigsFeatures.java +++ b/src/main/java/com/ninni/twigs/registry/TwigsFeatures.java @@ -20,7 +20,7 @@ public class TwigsFeatures { public static final Feature WATERLOGGABLE_SIMPLE_BLOCK = register("waterloggable_simple_block", new WaterloggableSimpleBlockFeature(SimpleBlockConfiguration.CODEC)); private static > F register(String string, F feature) { - return Registry.register(BuiltInRegistries.FEATURE, new ResourceLocation(Twigs.MOD_ID, string), feature); + return Registry.register(BuiltInRegistries.FEATURE, ResourceLocation.fromNamespaceAndPath(Twigs.MOD_ID, string), feature); } } diff --git a/src/main/java/com/ninni/twigs/registry/TwigsItems.java b/src/main/java/com/ninni/twigs/registry/TwigsItems.java index 11962b60..a2183ae6 100644 --- a/src/main/java/com/ninni/twigs/registry/TwigsItems.java +++ b/src/main/java/com/ninni/twigs/registry/TwigsItems.java @@ -4,12 +4,10 @@ import com.ninni.twigs.item.InstrumentBlockItem; import com.ninni.twigs.item.PebbleItem; import com.ninni.twigs.item.TwigItem; -import net.fabricmc.fabric.api.item.v1.FabricItemSettings; import net.fabricmc.fabric.api.registry.CompostingChanceRegistry; import net.minecraft.core.Registry; import net.minecraft.core.registries.BuiltInRegistries; import net.minecraft.resources.ResourceLocation; -import net.minecraft.tags.InstrumentTags; import net.minecraft.world.item.BlockItem; import net.minecraft.world.item.Item; import net.minecraft.world.item.Rarity; @@ -17,10 +15,10 @@ @SuppressWarnings("unused") public class TwigsItems { //logo - public static final Item TWIGS = register("twigs", new Item(new FabricItemSettings().maxCount(1).rarity(Rarity.EPIC).fireproof())); + public static final Item TWIGS = register("twigs", new Item(new Item.Properties().stacksTo(1).rarity(Rarity.EPIC).fireResistant())); //collectibles - public static final Item AZALEA_FLOWERS = register("azalea_flowers", new BlockItem(TwigsBlocks.AZALEA_FLOWERS, new FabricItemSettings())); + public static final Item AZALEA_FLOWERS = register("azalea_flowers", new BlockItem(TwigsBlocks.AZALEA_FLOWERS, new Item.Properties())); public static final Item TWIG = register("twig", new TwigItem(TwigsBlocks.TWIG, new Item.Properties())); public static final Item PEBBLE = register("pebble", new PebbleItem(TwigsBlocks.PEBBLE, new Item.Properties())); public static final Item BRONZED_SEASHELL = register("bronzed_seashell", new InstrumentBlockItem(TwigsBlocks.BRONZED_SEASHELL, new Item.Properties().rarity(Rarity.UNCOMMON).stacksTo(1))); @@ -32,299 +30,296 @@ public class TwigsItems { public static final Item BAMBOO_LEAVES = register("bamboo_leaves", new BlockItem(TwigsBlocks.BAMBOO_LEAVES, new Item.Properties())); public static final Item BAMBOO_THATCH = register("bamboo_thatch", new BlockItem(TwigsBlocks.BAMBOO_THATCH, new Item.Properties())); public static final Item BAMBOO_THATCH_SLAB = register("bamboo_thatch_slab", new BlockItem(TwigsBlocks.BAMBOO_THATCH_SLAB, new Item.Properties())); - public static final Item BAMBOO_MAT = register("bamboo_mat", new BlockItem(TwigsBlocks.BAMBOO_MAT, new FabricItemSettings())); + public static final Item BAMBOO_MAT = register("bamboo_mat", new BlockItem(TwigsBlocks.BAMBOO_MAT, new Item.Properties())); //paper lanterns - public static final Item PAPER_LANTERN = register("paper_lantern", new BlockItem(TwigsBlocks.PAPER_LANTERN, new FabricItemSettings())); - public static final Item ALLIUM_PAPER_LANTERN = register("allium_paper_lantern", new BlockItem(TwigsBlocks.ALLIUM_PAPER_LANTERN, new FabricItemSettings())); - public static final Item BLUE_ORCHID_PAPER_LANTERN = register("blue_orchid_paper_lantern", new BlockItem(TwigsBlocks.BLUE_ORCHID_PAPER_LANTERN, new FabricItemSettings())); - public static final Item CRIMSON_ROOTS_PAPER_LANTERN = register("crimson_roots_paper_lantern", new BlockItem(TwigsBlocks.CRIMSON_ROOTS_PAPER_LANTERN, new FabricItemSettings())); - public static final Item DANDELION_PAPER_LANTERN = register("dandelion_paper_lantern", new BlockItem(TwigsBlocks.DANDELION_PAPER_LANTERN, new FabricItemSettings())); - public static final Item TORCHFLOWER_PAPER_LANTERN = register("torchflower_paper_lantern", new BlockItem(TwigsBlocks.TORCHFLOWER_PAPER_LANTERN, new FabricItemSettings())); + public static final Item PAPER_LANTERN = register("paper_lantern", new BlockItem(TwigsBlocks.PAPER_LANTERN, new Item.Properties())); + public static final Item ALLIUM_PAPER_LANTERN = register("allium_paper_lantern", new BlockItem(TwigsBlocks.ALLIUM_PAPER_LANTERN, new Item.Properties())); + public static final Item BLUE_ORCHID_PAPER_LANTERN = register("blue_orchid_paper_lantern", new BlockItem(TwigsBlocks.BLUE_ORCHID_PAPER_LANTERN, new Item.Properties())); + public static final Item CRIMSON_ROOTS_PAPER_LANTERN = register("crimson_roots_paper_lantern", new BlockItem(TwigsBlocks.CRIMSON_ROOTS_PAPER_LANTERN, new Item.Properties())); + public static final Item DANDELION_PAPER_LANTERN = register("dandelion_paper_lantern", new BlockItem(TwigsBlocks.DANDELION_PAPER_LANTERN, new Item.Properties())); + public static final Item TORCHFLOWER_PAPER_LANTERN = register("torchflower_paper_lantern", new BlockItem(TwigsBlocks.TORCHFLOWER_PAPER_LANTERN, new Item.Properties())); //lamps - public static final Item lAMP = register("lamp", new BlockItem(TwigsBlocks.LAMP, new FabricItemSettings())); - public static final Item SOUL_LAMP = register("soul_lamp", new BlockItem(TwigsBlocks.SOUL_LAMP, new FabricItemSettings())); - public static final Item CRIMSON_SHROOMLAMP = register("crimson_shroomlamp", new BlockItem(TwigsBlocks.CRIMSON_SHROOMLAMP, new FabricItemSettings())); - public static final Item WARPED_SHROOMLAMP = register("warped_shroomlamp", new BlockItem(TwigsBlocks.WARPED_SHROOMLAMP, new FabricItemSettings())); + public static final Item lAMP = register("lamp", new BlockItem(TwigsBlocks.LAMP, new Item.Properties())); + public static final Item SOUL_LAMP = register("soul_lamp", new BlockItem(TwigsBlocks.SOUL_LAMP, new Item.Properties())); + public static final Item CRIMSON_SHROOMLAMP = register("crimson_shroomlamp", new BlockItem(TwigsBlocks.CRIMSON_SHROOMLAMP, new Item.Properties())); + public static final Item WARPED_SHROOMLAMP = register("warped_shroomlamp", new BlockItem(TwigsBlocks.WARPED_SHROOMLAMP, new Item.Properties())); //tables - public static final Item OAK_TABLE = register("oak_table", new BlockItem(TwigsBlocks.OAK_TABLE, new FabricItemSettings())); - public static final Item SPRUCE_TABLE = register("spruce_table", new BlockItem(TwigsBlocks.SPRUCE_TABLE, new FabricItemSettings())); - public static final Item BIRCH_TABLE = register("birch_table", new BlockItem(TwigsBlocks.BIRCH_TABLE, new FabricItemSettings())); - public static final Item JUNGLE_TABLE = register("jungle_table", new BlockItem(TwigsBlocks.JUNGLE_TABLE, new FabricItemSettings())); - public static final Item ACACIA_TABLE = register("acacia_table", new BlockItem(TwigsBlocks.ACACIA_TABLE, new FabricItemSettings())); - public static final Item DARK_OAK_TABLE = register("dark_oak_table", new BlockItem(TwigsBlocks.DARK_OAK_TABLE, new FabricItemSettings())); - public static final Item MANGROVE_TABLE = register("mangrove_table", new BlockItem(TwigsBlocks.MANGROVE_TABLE, new FabricItemSettings())); - public static final Item CHERRY_TABLE = register("cherry_table", new BlockItem(TwigsBlocks.CHERRY_TABLE, new FabricItemSettings())); - public static final Item BAMBOO_TABLE = register("bamboo_table", new BlockItem(TwigsBlocks.BAMBOO_TABLE, new FabricItemSettings())); - public static final Item CRIMSON_TABLE = register("crimson_table", new BlockItem(TwigsBlocks.CRIMSON_TABLE, new FabricItemSettings())); - public static final Item WARPED_TABLE = register("warped_table", new BlockItem(TwigsBlocks.WARPED_TABLE, new FabricItemSettings())); + public static final Item OAK_TABLE = register("oak_table", new BlockItem(TwigsBlocks.OAK_TABLE, new Item.Properties())); + public static final Item SPRUCE_TABLE = register("spruce_table", new BlockItem(TwigsBlocks.SPRUCE_TABLE, new Item.Properties())); + public static final Item BIRCH_TABLE = register("birch_table", new BlockItem(TwigsBlocks.BIRCH_TABLE, new Item.Properties())); + public static final Item JUNGLE_TABLE = register("jungle_table", new BlockItem(TwigsBlocks.JUNGLE_TABLE, new Item.Properties())); + public static final Item ACACIA_TABLE = register("acacia_table", new BlockItem(TwigsBlocks.ACACIA_TABLE, new Item.Properties())); + public static final Item DARK_OAK_TABLE = register("dark_oak_table", new BlockItem(TwigsBlocks.DARK_OAK_TABLE, new Item.Properties())); + public static final Item MANGROVE_TABLE = register("mangrove_table", new BlockItem(TwigsBlocks.MANGROVE_TABLE, new Item.Properties())); + public static final Item CHERRY_TABLE = register("cherry_table", new BlockItem(TwigsBlocks.CHERRY_TABLE, new Item.Properties())); + public static final Item BAMBOO_TABLE = register("bamboo_table", new BlockItem(TwigsBlocks.BAMBOO_TABLE, new Item.Properties())); + public static final Item CRIMSON_TABLE = register("crimson_table", new BlockItem(TwigsBlocks.CRIMSON_TABLE, new Item.Properties())); + public static final Item WARPED_TABLE = register("warped_table", new BlockItem(TwigsBlocks.WARPED_TABLE, new Item.Properties())); //basalt blocks - public static final Item POLISHED_BASALT_BRICKS = register("polished_basalt_bricks", new BlockItem(TwigsBlocks.POLISHED_BASALT_BRICKS, new FabricItemSettings())); - public static final Item SMOOTH_BASALT_BRICKS = register("smooth_basalt_bricks", new BlockItem(TwigsBlocks.SMOOTH_BASALT_BRICKS, new FabricItemSettings())); - public static final Item SMOOTH_BASALT_BRICK_STAIRS = register("smooth_basalt_brick_stairs", new BlockItem(TwigsBlocks.SMOOTH_BASALT_BRICK_STAIRS, new FabricItemSettings())); - public static final Item SMOOTH_BASALT_BRICK_SLAB = register("smooth_basalt_brick_slab", new BlockItem(TwigsBlocks.SMOOTH_BASALT_BRICK_SLAB, new FabricItemSettings())); - public static final Item SMOOTH_BASALT_BRICK_WALL = register("smooth_basalt_brick_wall", new BlockItem(TwigsBlocks.SMOOTH_BASALT_BRICK_WALL, new FabricItemSettings())); - public static final Item CHISELED_SMOOTH_BASALT_BRICKS = register("chiseled_smooth_basalt_bricks", new BlockItem(TwigsBlocks.CHISELED_SMOOTH_BASALT_BRICKS, new FabricItemSettings())); + public static final Item POLISHED_BASALT_BRICKS = register("polished_basalt_bricks", new BlockItem(TwigsBlocks.POLISHED_BASALT_BRICKS, new Item.Properties())); + public static final Item SMOOTH_BASALT_BRICKS = register("smooth_basalt_bricks", new BlockItem(TwigsBlocks.SMOOTH_BASALT_BRICKS, new Item.Properties())); + public static final Item SMOOTH_BASALT_BRICK_STAIRS = register("smooth_basalt_brick_stairs", new BlockItem(TwigsBlocks.SMOOTH_BASALT_BRICK_STAIRS, new Item.Properties())); + public static final Item SMOOTH_BASALT_BRICK_SLAB = register("smooth_basalt_brick_slab", new BlockItem(TwigsBlocks.SMOOTH_BASALT_BRICK_SLAB, new Item.Properties())); + public static final Item SMOOTH_BASALT_BRICK_WALL = register("smooth_basalt_brick_wall", new BlockItem(TwigsBlocks.SMOOTH_BASALT_BRICK_WALL, new Item.Properties())); + public static final Item CHISELED_SMOOTH_BASALT_BRICKS = register("chiseled_smooth_basalt_bricks", new BlockItem(TwigsBlocks.CHISELED_SMOOTH_BASALT_BRICKS, new Item.Properties())); //bricks - public static final Item MIXED_BRICKS = register("mixed_bricks", new BlockItem(TwigsBlocks.MIXED_BRICKS, new FabricItemSettings())); - public static final Item CHISELED_BRICKS = register("chiseled_bricks", new BlockItem(TwigsBlocks.CHISELED_BRICKS, new FabricItemSettings())); - public static final Item CRACKED_BRICKS = register("cracked_bricks", new BlockItem(TwigsBlocks.CRACKED_BRICKS, new FabricItemSettings())); - public static final Item MOSSY_BRICKS = register("mossy_bricks", new BlockItem(TwigsBlocks.MOSSY_BRICKS, new FabricItemSettings())); - public static final Item MOSSY_BRICK_STAIRS = register("mossy_brick_stairs", new BlockItem(TwigsBlocks.MOSSY_BRICK_STAIRS, new FabricItemSettings())); - public static final Item MOSSY_BRICK_SLAB = register("mossy_brick_slab", new BlockItem(TwigsBlocks.MOSSY_BRICK_SLAB, new FabricItemSettings())); - public static final Item MOSSY_BRICK_WALL = register("mossy_brick_wall", new BlockItem(TwigsBlocks.MOSSY_BRICK_WALL, new FabricItemSettings())); - public static final Item BRICK_TRAIL = register("brick_trail", new BlockItem(TwigsBlocks.BRICK_TRAIL, new FabricItemSettings())); + public static final Item MIXED_BRICKS = register("mixed_bricks", new BlockItem(TwigsBlocks.MIXED_BRICKS, new Item.Properties())); + public static final Item CHISELED_BRICKS = register("chiseled_bricks", new BlockItem(TwigsBlocks.CHISELED_BRICKS, new Item.Properties())); + public static final Item CRACKED_BRICKS = register("cracked_bricks", new BlockItem(TwigsBlocks.CRACKED_BRICKS, new Item.Properties())); + public static final Item MOSSY_BRICKS = register("mossy_bricks", new BlockItem(TwigsBlocks.MOSSY_BRICKS, new Item.Properties())); + public static final Item MOSSY_BRICK_STAIRS = register("mossy_brick_stairs", new BlockItem(TwigsBlocks.MOSSY_BRICK_STAIRS, new Item.Properties())); + public static final Item MOSSY_BRICK_SLAB = register("mossy_brick_slab", new BlockItem(TwigsBlocks.MOSSY_BRICK_SLAB, new Item.Properties())); + public static final Item MOSSY_BRICK_WALL = register("mossy_brick_wall", new BlockItem(TwigsBlocks.MOSSY_BRICK_WALL, new Item.Properties())); + public static final Item BRICK_TRAIL = register("brick_trail", new BlockItem(TwigsBlocks.BRICK_TRAIL, new Item.Properties())); //gravel bricks - public static final Item GRAVEL_BRICKS = register("gravel_bricks", new BlockItem(TwigsBlocks.GRAVEL_BRICKS, new FabricItemSettings())); - public static final Item GRAVEL_BRICK_STAIRS = register("gravel_brick_stairs", new BlockItem(TwigsBlocks.GRAVEL_BRICK_STAIRS, new FabricItemSettings())); - public static final Item GRAVEL_BRICK_SLAB = register("gravel_brick_slab", new BlockItem(TwigsBlocks.GRAVEL_BRICK_SLAB, new FabricItemSettings())); - public static final Item GRAVEL_BRICK_WALL = register("gravel_brick_wall", new BlockItem(TwigsBlocks.GRAVEL_BRICK_WALL, new FabricItemSettings())); + public static final Item GRAVEL_BRICKS = register("gravel_bricks", new BlockItem(TwigsBlocks.GRAVEL_BRICKS, new Item.Properties())); + public static final Item GRAVEL_BRICK_STAIRS = register("gravel_brick_stairs", new BlockItem(TwigsBlocks.GRAVEL_BRICK_STAIRS, new Item.Properties())); + public static final Item GRAVEL_BRICK_SLAB = register("gravel_brick_slab", new BlockItem(TwigsBlocks.GRAVEL_BRICK_SLAB, new Item.Properties())); + public static final Item GRAVEL_BRICK_WALL = register("gravel_brick_wall", new BlockItem(TwigsBlocks.GRAVEL_BRICK_WALL, new Item.Properties())); //smooth stone bricks - public static final Item SMOOTH_STONE_BRICKS = register("smooth_stone_bricks", new BlockItem(TwigsBlocks.SMOOTH_STONE_BRICKS, new FabricItemSettings())); - public static final Item SMOOTH_STONE_BRICK_STAIRS = register("smooth_stone_brick_stairs", new BlockItem(TwigsBlocks.SMOOTH_STONE_BRICK_STAIRS, new FabricItemSettings())); - public static final Item SMOOTH_STONE_BRICK_SLAB = register("smooth_stone_brick_slab", new BlockItem(TwigsBlocks.SMOOTH_STONE_BRICK_SLAB, new FabricItemSettings())); - public static final Item SMOOTH_STONE_BRICK_WALL = register("smooth_stone_brick_wall", new BlockItem(TwigsBlocks.SMOOTH_STONE_BRICK_WALL, new FabricItemSettings())); + public static final Item SMOOTH_STONE_BRICKS = register("smooth_stone_bricks", new BlockItem(TwigsBlocks.SMOOTH_STONE_BRICKS, new Item.Properties())); + public static final Item SMOOTH_STONE_BRICK_STAIRS = register("smooth_stone_brick_stairs", new BlockItem(TwigsBlocks.SMOOTH_STONE_BRICK_STAIRS, new Item.Properties())); + public static final Item SMOOTH_STONE_BRICK_SLAB = register("smooth_stone_brick_slab", new BlockItem(TwigsBlocks.SMOOTH_STONE_BRICK_SLAB, new Item.Properties())); + public static final Item SMOOTH_STONE_BRICK_WALL = register("smooth_stone_brick_wall", new BlockItem(TwigsBlocks.SMOOTH_STONE_BRICK_WALL, new Item.Properties())); //columns - public static final Item QUARTZ_COLUMN = register("quartz_column", new BlockItem(TwigsBlocks.QUARTZ_COLUMN, new FabricItemSettings())); - public static final Item STONE_COLUMN = register("stone_column", new BlockItem(TwigsBlocks.STONE_COLUMN, new FabricItemSettings())); - public static final Item DEEPSLATE_COLUMN = register("deepslate_column", new BlockItem(TwigsBlocks.DEEPSLATE_COLUMN, new FabricItemSettings())); - public static final Item BLACKSTONE_COLUMN = register("blackstone_column", new BlockItem(TwigsBlocks.BLACKSTONE_COLUMN, new FabricItemSettings())); + public static final Item QUARTZ_COLUMN = register("quartz_column", new BlockItem(TwigsBlocks.QUARTZ_COLUMN, new Item.Properties())); + public static final Item STONE_COLUMN = register("stone_column", new BlockItem(TwigsBlocks.STONE_COLUMN, new Item.Properties())); + public static final Item DEEPSLATE_COLUMN = register("deepslate_column", new BlockItem(TwigsBlocks.DEEPSLATE_COLUMN, new Item.Properties())); + public static final Item BLACKSTONE_COLUMN = register("blackstone_column", new BlockItem(TwigsBlocks.BLACKSTONE_COLUMN, new Item.Properties())); //copper pillars - public static final Item COPPER_PILLAR = register("copper_pillar", new BlockItem(TwigsBlocks.COPPER_PILLAR, new FabricItemSettings())); - public static final Item EXPOSED_COPPER_PILLAR = register("exposed_copper_pillar", new BlockItem(TwigsBlocks.EXPOSED_COPPER_PILLAR, new FabricItemSettings())); - public static final Item WEATHERED_COPPER_PILLAR = register("weathered_copper_pillar", new BlockItem(TwigsBlocks.WEATHERED_COPPER_PILLAR, new FabricItemSettings())); - public static final Item OXIDIZED_COPPER_PILLAR = register("oxidized_copper_pillar", new BlockItem(TwigsBlocks.OXIDIZED_COPPER_PILLAR, new FabricItemSettings())); - public static final Item WAXED_COPPER_PILLAR = register("waxed_copper_pillar", new BlockItem(TwigsBlocks.WAXED_COPPER_PILLAR, new FabricItemSettings())); - public static final Item WAXED_EXPOSED_COPPER_PILLAR = register("waxed_exposed_copper_pillar", new BlockItem(TwigsBlocks.WAXED_EXPOSED_COPPER_PILLAR, new FabricItemSettings())); - public static final Item WAXED_WEATHERED_COPPER_PILLAR = register("waxed_weathered_copper_pillar", new BlockItem(TwigsBlocks.WAXED_WEATHERED_COPPER_PILLAR, new FabricItemSettings())); - public static final Item WAXED_OXIDIZED_COPPER_PILLAR = register("waxed_oxidized_copper_pillar", new BlockItem(TwigsBlocks.WAXED_OXIDIZED_COPPER_PILLAR, new FabricItemSettings())); + public static final Item COPPER_PILLAR = register("copper_pillar", new BlockItem(TwigsBlocks.COPPER_PILLAR, new Item.Properties())); + public static final Item EXPOSED_COPPER_PILLAR = register("exposed_copper_pillar", new BlockItem(TwigsBlocks.EXPOSED_COPPER_PILLAR, new Item.Properties())); + public static final Item WEATHERED_COPPER_PILLAR = register("weathered_copper_pillar", new BlockItem(TwigsBlocks.WEATHERED_COPPER_PILLAR, new Item.Properties())); + public static final Item OXIDIZED_COPPER_PILLAR = register("oxidized_copper_pillar", new BlockItem(TwigsBlocks.OXIDIZED_COPPER_PILLAR, new Item.Properties())); + public static final Item WAXED_COPPER_PILLAR = register("waxed_copper_pillar", new BlockItem(TwigsBlocks.WAXED_COPPER_PILLAR, new Item.Properties())); + public static final Item WAXED_EXPOSED_COPPER_PILLAR = register("waxed_exposed_copper_pillar", new BlockItem(TwigsBlocks.WAXED_EXPOSED_COPPER_PILLAR, new Item.Properties())); + public static final Item WAXED_WEATHERED_COPPER_PILLAR = register("waxed_weathered_copper_pillar", new BlockItem(TwigsBlocks.WAXED_WEATHERED_COPPER_PILLAR, new Item.Properties())); + public static final Item WAXED_OXIDIZED_COPPER_PILLAR = register("waxed_oxidized_copper_pillar", new BlockItem(TwigsBlocks.WAXED_OXIDIZED_COPPER_PILLAR, new Item.Properties())); //amethyst blocks - public static final Item POLISHED_AMETHYST = register("polished_amethyst", new BlockItem(TwigsBlocks.POLISHED_AMETHYST, new FabricItemSettings())); - public static final Item CUT_AMETHYST = register("cut_amethyst", new BlockItem(TwigsBlocks.CUT_AMETHYST, new FabricItemSettings())); + public static final Item POLISHED_AMETHYST = register("polished_amethyst", new BlockItem(TwigsBlocks.POLISHED_AMETHYST, new Item.Properties())); + public static final Item CUT_AMETHYST = register("cut_amethyst", new BlockItem(TwigsBlocks.CUT_AMETHYST, new Item.Properties())); //misc public static final Item PETRIFIED_LICHEN = register("petrified_lichen", new BlockItem(TwigsBlocks.PETRIFIED_LICHEN, new Item.Properties())); - public static final Item COMPACTED_DRIPSTONE = register("compacted_dripstone", new BlockItem(TwigsBlocks.COMPACTED_DRIPSTONE, new FabricItemSettings())); - public static final Item ROCKY_DIRT = register("rocky_dirt", new BlockItem(TwigsBlocks.ROCKY_DIRT, new FabricItemSettings())); + public static final Item COMPACTED_DRIPSTONE = register("compacted_dripstone", new BlockItem(TwigsBlocks.COMPACTED_DRIPSTONE, new Item.Properties())); + public static final Item ROCKY_DIRT = register("rocky_dirt", new BlockItem(TwigsBlocks.ROCKY_DIRT, new Item.Properties())); //cobblestone bricks - public static final Item COBBLESTONE_BRICKS = register("cobblestone_bricks", new BlockItem(TwigsBlocks.COBBLESTONE_BRICKS, new FabricItemSettings())); - public static final Item COBBLESTONE_BRICK_STAIRS = register("cobblestone_brick_stairs", new BlockItem(TwigsBlocks.COBBLESTONE_BRICK_STAIRS, new FabricItemSettings())); - public static final Item COBBLESTONE_BRICK_SLAB = register("cobblestone_brick_slab", new BlockItem(TwigsBlocks.COBBLESTONE_BRICK_SLAB, new FabricItemSettings())); - public static final Item COBBLESTONE_BRICK_WALL = register("cobblestone_brick_wall", new BlockItem(TwigsBlocks.COBBLESTONE_BRICK_WALL, new FabricItemSettings())); - public static final Item CRACKED_COBBLESTONE_BRICKS = register("cracked_cobblestone_bricks", new BlockItem(TwigsBlocks.CRACKED_COBBLESTONE_BRICKS, new FabricItemSettings())); - public static final Item MOSSY_COBBLESTONE_BRICKS = register("mossy_cobblestone_bricks", new BlockItem(TwigsBlocks.MOSSY_COBBLESTONE_BRICKS, new FabricItemSettings())); - public static final Item MOSSY_COBBLESTONE_BRICK_STAIRS = register("mossy_cobblestone_brick_stairs", new BlockItem(TwigsBlocks.MOSSY_COBBLESTONE_BRICK_STAIRS, new FabricItemSettings())); - public static final Item MOSSY_COBBLESTONE_BRICK_SLAB = register("mossy_cobblestone_brick_slab", new BlockItem(TwigsBlocks.MOSSY_COBBLESTONE_BRICK_SLAB, new FabricItemSettings())); - public static final Item MOSSY_COBBLESTONE_BRICK_WALL = register("mossy_cobblestone_brick_wall", new BlockItem(TwigsBlocks.MOSSY_COBBLESTONE_BRICK_WALL, new FabricItemSettings())); + public static final Item COBBLESTONE_BRICKS = register("cobblestone_bricks", new BlockItem(TwigsBlocks.COBBLESTONE_BRICKS, new Item.Properties())); + public static final Item COBBLESTONE_BRICK_STAIRS = register("cobblestone_brick_stairs", new BlockItem(TwigsBlocks.COBBLESTONE_BRICK_STAIRS, new Item.Properties())); + public static final Item COBBLESTONE_BRICK_SLAB = register("cobblestone_brick_slab", new BlockItem(TwigsBlocks.COBBLESTONE_BRICK_SLAB, new Item.Properties())); + public static final Item COBBLESTONE_BRICK_WALL = register("cobblestone_brick_wall", new BlockItem(TwigsBlocks.COBBLESTONE_BRICK_WALL, new Item.Properties())); + public static final Item CRACKED_COBBLESTONE_BRICKS = register("cracked_cobblestone_bricks", new BlockItem(TwigsBlocks.CRACKED_COBBLESTONE_BRICKS, new Item.Properties())); + public static final Item MOSSY_COBBLESTONE_BRICKS = register("mossy_cobblestone_bricks", new BlockItem(TwigsBlocks.MOSSY_COBBLESTONE_BRICKS, new Item.Properties())); + public static final Item MOSSY_COBBLESTONE_BRICK_STAIRS = register("mossy_cobblestone_brick_stairs", new BlockItem(TwigsBlocks.MOSSY_COBBLESTONE_BRICK_STAIRS, new Item.Properties())); + public static final Item MOSSY_COBBLESTONE_BRICK_SLAB = register("mossy_cobblestone_brick_slab", new BlockItem(TwigsBlocks.MOSSY_COBBLESTONE_BRICK_SLAB, new Item.Properties())); + public static final Item MOSSY_COBBLESTONE_BRICK_WALL = register("mossy_cobblestone_brick_wall", new BlockItem(TwigsBlocks.MOSSY_COBBLESTONE_BRICK_WALL, new Item.Properties())); //decorated blackstone bricks - public static final Item TWISTING_POLISHED_BLACKSTONE_BRICKS = register("twisting_polished_blackstone_bricks", new BlockItem(TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICKS, new FabricItemSettings())); - public static final Item TWISTING_POLISHED_BLACKSTONE_BRICK_STAIRS = register("twisting_polished_blackstone_brick_stairs", new BlockItem(TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICK_STAIRS, new FabricItemSettings())); - public static final Item TWISTING_POLISHED_BLACKSTONE_BRICK_SLAB = register("twisting_polished_blackstone_brick_slab", new BlockItem(TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICK_SLAB, new FabricItemSettings())); - public static final Item TWISTING_POLISHED_BLACKSTONE_BRICK_WALL = register("twisting_polished_blackstone_brick_wall", new BlockItem(TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICK_WALL, new FabricItemSettings())); - public static final Item WEEPING_POLISHED_BLACKSTONE_BRICKS = register("weeping_polished_blackstone_bricks", new BlockItem(TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICKS, new FabricItemSettings())); - public static final Item WEEPING_POLISHED_BLACKSTONE_BRICK_STAIRS = register("weeping_polished_blackstone_brick_stairs", new BlockItem(TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICK_STAIRS, new FabricItemSettings())); - public static final Item WEEPING_POLISHED_BLACKSTONE_BRICK_SLAB = register("weeping_polished_blackstone_brick_slab", new BlockItem(TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICK_SLAB, new FabricItemSettings())); - public static final Item WEEPING_POLISHED_BLACKSTONE_BRICK_WALL = register("weeping_polished_blackstone_brick_wall", new BlockItem(TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICK_WALL, new FabricItemSettings())); + public static final Item TWISTING_POLISHED_BLACKSTONE_BRICKS = register("twisting_polished_blackstone_bricks", new BlockItem(TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICKS, new Item.Properties())); + public static final Item TWISTING_POLISHED_BLACKSTONE_BRICK_STAIRS = register("twisting_polished_blackstone_brick_stairs", new BlockItem(TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICK_STAIRS, new Item.Properties())); + public static final Item TWISTING_POLISHED_BLACKSTONE_BRICK_SLAB = register("twisting_polished_blackstone_brick_slab", new BlockItem(TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICK_SLAB, new Item.Properties())); + public static final Item TWISTING_POLISHED_BLACKSTONE_BRICK_WALL = register("twisting_polished_blackstone_brick_wall", new BlockItem(TwigsBlocks.TWISTING_POLISHED_BLACKSTONE_BRICK_WALL, new Item.Properties())); + public static final Item WEEPING_POLISHED_BLACKSTONE_BRICKS = register("weeping_polished_blackstone_bricks", new BlockItem(TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICKS, new Item.Properties())); + public static final Item WEEPING_POLISHED_BLACKSTONE_BRICK_STAIRS = register("weeping_polished_blackstone_brick_stairs", new BlockItem(TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICK_STAIRS, new Item.Properties())); + public static final Item WEEPING_POLISHED_BLACKSTONE_BRICK_SLAB = register("weeping_polished_blackstone_brick_slab", new BlockItem(TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICK_SLAB, new Item.Properties())); + public static final Item WEEPING_POLISHED_BLACKSTONE_BRICK_WALL = register("weeping_polished_blackstone_brick_wall", new BlockItem(TwigsBlocks.WEEPING_POLISHED_BLACKSTONE_BRICK_WALL, new Item.Properties())); //tuff blocks - public static final Item TUFF_STAIRS = register("tuff_stairs", new BlockItem(TwigsBlocks.TUFF_STAIRS, new FabricItemSettings())); - public static final Item TUFF_SLAB = register("tuff_slab", new BlockItem(TwigsBlocks.TUFF_SLAB, new FabricItemSettings())); - public static final Item TUFF_WALL = register("tuff_wall", new BlockItem(TwigsBlocks.TUFF_WALL, new FabricItemSettings())); - public static final Item POLISHED_TUFF = register("polished_tuff", new BlockItem(TwigsBlocks.POLISHED_TUFF, new FabricItemSettings())); - public static final Item POLISHED_TUFF_STAIRS = register("polished_tuff_stairs", new BlockItem(TwigsBlocks.POLISHED_TUFF_STAIRS, new FabricItemSettings())); - public static final Item POLISHED_TUFF_SLAB = register("polished_tuff_slab", new BlockItem(TwigsBlocks.POLISHED_TUFF_SLAB, new FabricItemSettings())); - public static final Item POLISHED_TUFF_BRICKS = register("polished_tuff_bricks", new BlockItem(TwigsBlocks.POLISHED_TUFF_BRICKS, new FabricItemSettings())); - public static final Item POLISHED_TUFF_BRICK_STAIRS = register("polished_tuff_brick_stairs", new BlockItem(TwigsBlocks.POLISHED_TUFF_BRICK_STAIRS, new FabricItemSettings())); - public static final Item POLISHED_TUFF_BRICK_SLAB = register("polished_tuff_brick_slab", new BlockItem(TwigsBlocks.POLISHED_TUFF_BRICK_SLAB, new FabricItemSettings())); - public static final Item POLISHED_TUFF_BRICK_WALL = register("polished_tuff_brick_wall", new BlockItem(TwigsBlocks.POLISHED_TUFF_BRICK_WALL, new FabricItemSettings())); - public static final Item CRACKED_POLISHED_TUFF_BRICKS = register("cracked_polished_tuff_bricks", new BlockItem(TwigsBlocks.CRACKED_POLISHED_TUFF_BRICKS, new FabricItemSettings())); + public static final Item POLISHED_TUFF = register("polished_tuff", new BlockItem(TwigsBlocks.POLISHED_TUFF, new Item.Properties())); + public static final Item POLISHED_TUFF_STAIRS = register("polished_tuff_stairs", new BlockItem(TwigsBlocks.POLISHED_TUFF_STAIRS, new Item.Properties())); + public static final Item POLISHED_TUFF_SLAB = register("polished_tuff_slab", new BlockItem(TwigsBlocks.POLISHED_TUFF_SLAB, new Item.Properties())); + public static final Item POLISHED_TUFF_BRICKS = register("polished_tuff_bricks", new BlockItem(TwigsBlocks.POLISHED_TUFF_BRICKS, new Item.Properties())); + public static final Item POLISHED_TUFF_BRICK_STAIRS = register("polished_tuff_brick_stairs", new BlockItem(TwigsBlocks.POLISHED_TUFF_BRICK_STAIRS, new Item.Properties())); + public static final Item POLISHED_TUFF_BRICK_SLAB = register("polished_tuff_brick_slab", new BlockItem(TwigsBlocks.POLISHED_TUFF_BRICK_SLAB, new Item.Properties())); + public static final Item POLISHED_TUFF_BRICK_WALL = register("polished_tuff_brick_wall", new BlockItem(TwigsBlocks.POLISHED_TUFF_BRICK_WALL, new Item.Properties())); + public static final Item CRACKED_POLISHED_TUFF_BRICKS = register("cracked_polished_tuff_bricks", new BlockItem(TwigsBlocks.CRACKED_POLISHED_TUFF_BRICKS, new Item.Properties())); //calcite blocks - public static final Item CALCITE_STAIRS = register("calcite_stairs", new BlockItem(TwigsBlocks.CALCITE_STAIRS, new FabricItemSettings())); - public static final Item CALCITE_SLAB = register("calcite_slab", new BlockItem(TwigsBlocks.CALCITE_SLAB, new FabricItemSettings())); - public static final Item CALCITE_WALL = register("calcite_wall", new BlockItem(TwigsBlocks.CALCITE_WALL, new FabricItemSettings())); - public static final Item POLISHED_CALCITE = register("polished_calcite", new BlockItem(TwigsBlocks.POLISHED_CALCITE, new FabricItemSettings())); - public static final Item POLISHED_CALCITE_STAIRS = register("polished_calcite_stairs", new BlockItem(TwigsBlocks.POLISHED_CALCITE_STAIRS, new FabricItemSettings())); - public static final Item POLISHED_CALCITE_SLAB = register("polished_calcite_slab", new BlockItem(TwigsBlocks.POLISHED_CALCITE_SLAB, new FabricItemSettings())); - public static final Item POLISHED_CALCITE_BRICKS = register("polished_calcite_bricks", new BlockItem(TwigsBlocks.POLISHED_CALCITE_BRICKS, new FabricItemSettings())); - public static final Item POLISHED_CALCITE_BRICK_STAIRS = register("polished_calcite_brick_stairs", new BlockItem(TwigsBlocks.POLISHED_CALCITE_BRICK_STAIRS, new FabricItemSettings())); - public static final Item POLISHED_CALCITE_BRICK_SLAB = register("polished_calcite_brick_slab", new BlockItem(TwigsBlocks.POLISHED_CALCITE_BRICK_SLAB, new FabricItemSettings())); - public static final Item POLISHED_CALCITE_BRICK_WALL = register("polished_calcite_brick_wall", new BlockItem(TwigsBlocks.POLISHED_CALCITE_BRICK_WALL, new FabricItemSettings())); - public static final Item CRACKED_POLISHED_CALCITE_BRICKS = register("cracked_polished_calcite_bricks", new BlockItem(TwigsBlocks.CRACKED_POLISHED_CALCITE_BRICKS, new FabricItemSettings())); + public static final Item CALCITE_STAIRS = register("calcite_stairs", new BlockItem(TwigsBlocks.CALCITE_STAIRS, new Item.Properties())); + public static final Item CALCITE_SLAB = register("calcite_slab", new BlockItem(TwigsBlocks.CALCITE_SLAB, new Item.Properties())); + public static final Item CALCITE_WALL = register("calcite_wall", new BlockItem(TwigsBlocks.CALCITE_WALL, new Item.Properties())); + public static final Item POLISHED_CALCITE = register("polished_calcite", new BlockItem(TwigsBlocks.POLISHED_CALCITE, new Item.Properties())); + public static final Item POLISHED_CALCITE_STAIRS = register("polished_calcite_stairs", new BlockItem(TwigsBlocks.POLISHED_CALCITE_STAIRS, new Item.Properties())); + public static final Item POLISHED_CALCITE_SLAB = register("polished_calcite_slab", new BlockItem(TwigsBlocks.POLISHED_CALCITE_SLAB, new Item.Properties())); + public static final Item POLISHED_CALCITE_BRICKS = register("polished_calcite_bricks", new BlockItem(TwigsBlocks.POLISHED_CALCITE_BRICKS, new Item.Properties())); + public static final Item POLISHED_CALCITE_BRICK_STAIRS = register("polished_calcite_brick_stairs", new BlockItem(TwigsBlocks.POLISHED_CALCITE_BRICK_STAIRS, new Item.Properties())); + public static final Item POLISHED_CALCITE_BRICK_SLAB = register("polished_calcite_brick_slab", new BlockItem(TwigsBlocks.POLISHED_CALCITE_BRICK_SLAB, new Item.Properties())); + public static final Item POLISHED_CALCITE_BRICK_WALL = register("polished_calcite_brick_wall", new BlockItem(TwigsBlocks.POLISHED_CALCITE_BRICK_WALL, new Item.Properties())); + public static final Item CRACKED_POLISHED_CALCITE_BRICKS = register("cracked_polished_calcite_bricks", new BlockItem(TwigsBlocks.CRACKED_POLISHED_CALCITE_BRICKS, new Item.Properties())); //schist blocks - public static final Item SCHIST = register("schist", new BlockItem(TwigsBlocks.SCHIST, new FabricItemSettings())); - public static final Item SCHIST_STAIRS = register("schist_stairs", new BlockItem(TwigsBlocks.SCHIST_STAIRS, new FabricItemSettings())); - public static final Item SCHIST_SLAB = register("schist_slab", new BlockItem(TwigsBlocks.SCHIST_SLAB, new FabricItemSettings())); - public static final Item SCHIST_WALL = register("schist_wall", new BlockItem(TwigsBlocks.SCHIST_WALL, new FabricItemSettings())); - public static final Item POLISHED_SCHIST = register("polished_schist", new BlockItem(TwigsBlocks.POLISHED_SCHIST, new FabricItemSettings())); - public static final Item POLISHED_SCHIST_STAIRS = register("polished_schist_stairs", new BlockItem(TwigsBlocks.POLISHED_SCHIST_STAIRS, new FabricItemSettings())); - public static final Item POLISHED_SCHIST_SLAB = register("polished_schist_slab", new BlockItem(TwigsBlocks.POLISHED_SCHIST_SLAB, new FabricItemSettings())); - public static final Item POLISHED_SCHIST_BRICKS = register("polished_schist_bricks", new BlockItem(TwigsBlocks.POLISHED_SCHIST_BRICKS, new FabricItemSettings())); - public static final Item POLISHED_SCHIST_BRICK_STAIRS = register("polished_schist_brick_stairs", new BlockItem(TwigsBlocks.POLISHED_SCHIST_BRICK_STAIRS, new FabricItemSettings())); - public static final Item POLISHED_SCHIST_BRICK_SLAB = register("polished_schist_brick_slab", new BlockItem(TwigsBlocks.POLISHED_SCHIST_BRICK_SLAB, new FabricItemSettings())); - public static final Item POLISHED_SCHIST_BRICK_WALL = register("polished_schist_brick_wall", new BlockItem(TwigsBlocks.POLISHED_SCHIST_BRICK_WALL, new FabricItemSettings())); - public static final Item CRACKED_POLISHED_SCHIST_BRICKS = register("cracked_polished_schist_bricks", new BlockItem(TwigsBlocks.CRACKED_POLISHED_SCHIST_BRICKS, new FabricItemSettings())); + public static final Item SCHIST = register("schist", new BlockItem(TwigsBlocks.SCHIST, new Item.Properties())); + public static final Item SCHIST_STAIRS = register("schist_stairs", new BlockItem(TwigsBlocks.SCHIST_STAIRS, new Item.Properties())); + public static final Item SCHIST_SLAB = register("schist_slab", new BlockItem(TwigsBlocks.SCHIST_SLAB, new Item.Properties())); + public static final Item SCHIST_WALL = register("schist_wall", new BlockItem(TwigsBlocks.SCHIST_WALL, new Item.Properties())); + public static final Item POLISHED_SCHIST = register("polished_schist", new BlockItem(TwigsBlocks.POLISHED_SCHIST, new Item.Properties())); + public static final Item POLISHED_SCHIST_STAIRS = register("polished_schist_stairs", new BlockItem(TwigsBlocks.POLISHED_SCHIST_STAIRS, new Item.Properties())); + public static final Item POLISHED_SCHIST_SLAB = register("polished_schist_slab", new BlockItem(TwigsBlocks.POLISHED_SCHIST_SLAB, new Item.Properties())); + public static final Item POLISHED_SCHIST_BRICKS = register("polished_schist_bricks", new BlockItem(TwigsBlocks.POLISHED_SCHIST_BRICKS, new Item.Properties())); + public static final Item POLISHED_SCHIST_BRICK_STAIRS = register("polished_schist_brick_stairs", new BlockItem(TwigsBlocks.POLISHED_SCHIST_BRICK_STAIRS, new Item.Properties())); + public static final Item POLISHED_SCHIST_BRICK_SLAB = register("polished_schist_brick_slab", new BlockItem(TwigsBlocks.POLISHED_SCHIST_BRICK_SLAB, new Item.Properties())); + public static final Item POLISHED_SCHIST_BRICK_WALL = register("polished_schist_brick_wall", new BlockItem(TwigsBlocks.POLISHED_SCHIST_BRICK_WALL, new Item.Properties())); + public static final Item CRACKED_POLISHED_SCHIST_BRICKS = register("cracked_polished_schist_bricks", new BlockItem(TwigsBlocks.CRACKED_POLISHED_SCHIST_BRICKS, new Item.Properties())); //rhyolite blocks - public static final Item RHYOLITE = register("rhyolite", new BlockItem(TwigsBlocks.RHYOLITE, new FabricItemSettings())); - public static final Item RHYOLITE_STAIRS = register("rhyolite_stairs", new BlockItem(TwigsBlocks.RHYOLITE_STAIRS, new FabricItemSettings())); - public static final Item RHYOLITE_SLAB = register("rhyolite_slab", new BlockItem(TwigsBlocks.RHYOLITE_SLAB, new FabricItemSettings())); - public static final Item RHYOLITE_WALL = register("rhyolite_wall", new BlockItem(TwigsBlocks.RHYOLITE_WALL, new FabricItemSettings())); - public static final Item POLISHED_RHYOLITE = register("polished_rhyolite", new BlockItem(TwigsBlocks.POLISHED_RHYOLITE, new FabricItemSettings())); - public static final Item POLISHED_RHYOLITE_STAIRS = register("polished_rhyolite_stairs", new BlockItem(TwigsBlocks.POLISHED_RHYOLITE_STAIRS, new FabricItemSettings())); - public static final Item POLISHED_RHYOLITE_SLAB = register("polished_rhyolite_slab", new BlockItem(TwigsBlocks.POLISHED_RHYOLITE_SLAB, new FabricItemSettings())); - public static final Item POLISHED_RHYOLITE_BRICKS = register("polished_rhyolite_bricks", new BlockItem(TwigsBlocks.POLISHED_RHYOLITE_BRICKS, new FabricItemSettings())); - public static final Item POLISHED_RHYOLITE_BRICK_STAIRS = register("polished_rhyolite_brick_stairs", new BlockItem(TwigsBlocks.POLISHED_RHYOLITE_BRICK_STAIRS, new FabricItemSettings())); - public static final Item POLISHED_RHYOLITE_BRICK_SLAB = register("polished_rhyolite_brick_slab", new BlockItem(TwigsBlocks.POLISHED_RHYOLITE_BRICK_SLAB, new FabricItemSettings())); - public static final Item POLISHED_RHYOLITE_BRICK_WALL = register("polished_rhyolite_brick_wall", new BlockItem(TwigsBlocks.POLISHED_RHYOLITE_BRICK_WALL, new FabricItemSettings())); - public static final Item CRACKED_POLISHED_RHYOLITE_BRICKS = register("cracked_polished_rhyolite_bricks", new BlockItem(TwigsBlocks.CRACKED_POLISHED_RHYOLITE_BRICKS, new FabricItemSettings())); + public static final Item RHYOLITE = register("rhyolite", new BlockItem(TwigsBlocks.RHYOLITE, new Item.Properties())); + public static final Item RHYOLITE_STAIRS = register("rhyolite_stairs", new BlockItem(TwigsBlocks.RHYOLITE_STAIRS, new Item.Properties())); + public static final Item RHYOLITE_SLAB = register("rhyolite_slab", new BlockItem(TwigsBlocks.RHYOLITE_SLAB, new Item.Properties())); + public static final Item RHYOLITE_WALL = register("rhyolite_wall", new BlockItem(TwigsBlocks.RHYOLITE_WALL, new Item.Properties())); + public static final Item POLISHED_RHYOLITE = register("polished_rhyolite", new BlockItem(TwigsBlocks.POLISHED_RHYOLITE, new Item.Properties())); + public static final Item POLISHED_RHYOLITE_STAIRS = register("polished_rhyolite_stairs", new BlockItem(TwigsBlocks.POLISHED_RHYOLITE_STAIRS, new Item.Properties())); + public static final Item POLISHED_RHYOLITE_SLAB = register("polished_rhyolite_slab", new BlockItem(TwigsBlocks.POLISHED_RHYOLITE_SLAB, new Item.Properties())); + public static final Item POLISHED_RHYOLITE_BRICKS = register("polished_rhyolite_bricks", new BlockItem(TwigsBlocks.POLISHED_RHYOLITE_BRICKS, new Item.Properties())); + public static final Item POLISHED_RHYOLITE_BRICK_STAIRS = register("polished_rhyolite_brick_stairs", new BlockItem(TwigsBlocks.POLISHED_RHYOLITE_BRICK_STAIRS, new Item.Properties())); + public static final Item POLISHED_RHYOLITE_BRICK_SLAB = register("polished_rhyolite_brick_slab", new BlockItem(TwigsBlocks.POLISHED_RHYOLITE_BRICK_SLAB, new Item.Properties())); + public static final Item POLISHED_RHYOLITE_BRICK_WALL = register("polished_rhyolite_brick_wall", new BlockItem(TwigsBlocks.POLISHED_RHYOLITE_BRICK_WALL, new Item.Properties())); + public static final Item CRACKED_POLISHED_RHYOLITE_BRICKS = register("cracked_polished_rhyolite_bricks", new BlockItem(TwigsBlocks.CRACKED_POLISHED_RHYOLITE_BRICKS, new Item.Properties())); //bloodstone blocks - public static final Item BLOODSTONE = register("bloodstone", new BlockItem(TwigsBlocks.BLOODSTONE, new FabricItemSettings())); - public static final Item BLOODSTONE_STAIRS = register("bloodstone_stairs", new BlockItem(TwigsBlocks.BLOODSTONE_STAIRS, new FabricItemSettings())); - public static final Item BLOODSTONE_SLAB = register("bloodstone_slab", new BlockItem(TwigsBlocks.BLOODSTONE_SLAB, new FabricItemSettings())); - public static final Item BLOODSTONE_WALL = register("bloodstone_wall", new BlockItem(TwigsBlocks.BLOODSTONE_WALL, new FabricItemSettings())); - public static final Item POLISHED_BLOODSTONE = register("polished_bloodstone", new BlockItem(TwigsBlocks.POLISHED_BLOODSTONE, new FabricItemSettings())); - public static final Item POLISHED_BLOODSTONE_STAIRS = register("polished_bloodstone_stairs", new BlockItem(TwigsBlocks.POLISHED_BLOODSTONE_STAIRS, new FabricItemSettings())); - public static final Item POLISHED_BLOODSTONE_SLAB = register("polished_bloodstone_slab", new BlockItem(TwigsBlocks.POLISHED_BLOODSTONE_SLAB, new FabricItemSettings())); - public static final Item POLISHED_BLOODSTONE_BRICKS = register("polished_bloodstone_bricks", new BlockItem(TwigsBlocks.POLISHED_BLOODSTONE_BRICKS, new FabricItemSettings())); - public static final Item POLISHED_BLOODSTONE_BRICK_STAIRS = register("polished_bloodstone_brick_stairs", new BlockItem(TwigsBlocks.POLISHED_BLOODSTONE_BRICK_STAIRS, new FabricItemSettings())); - public static final Item POLISHED_BLOODSTONE_BRICK_SLAB = register("polished_bloodstone_brick_slab", new BlockItem(TwigsBlocks.POLISHED_BLOODSTONE_BRICK_SLAB, new FabricItemSettings())); - public static final Item POLISHED_BLOODSTONE_BRICK_WALL = register("polished_bloodstone_brick_wall", new BlockItem(TwigsBlocks.POLISHED_BLOODSTONE_BRICK_WALL, new FabricItemSettings())); - public static final Item CRACKED_POLISHED_BLOODSTONE_BRICKS = register("cracked_polished_bloodstone_bricks", new BlockItem(TwigsBlocks.CRACKED_POLISHED_BLOODSTONE_BRICKS, new FabricItemSettings())); + public static final Item BLOODSTONE = register("bloodstone", new BlockItem(TwigsBlocks.BLOODSTONE, new Item.Properties())); + public static final Item BLOODSTONE_STAIRS = register("bloodstone_stairs", new BlockItem(TwigsBlocks.BLOODSTONE_STAIRS, new Item.Properties())); + public static final Item BLOODSTONE_SLAB = register("bloodstone_slab", new BlockItem(TwigsBlocks.BLOODSTONE_SLAB, new Item.Properties())); + public static final Item BLOODSTONE_WALL = register("bloodstone_wall", new BlockItem(TwigsBlocks.BLOODSTONE_WALL, new Item.Properties())); + public static final Item POLISHED_BLOODSTONE = register("polished_bloodstone", new BlockItem(TwigsBlocks.POLISHED_BLOODSTONE, new Item.Properties())); + public static final Item POLISHED_BLOODSTONE_STAIRS = register("polished_bloodstone_stairs", new BlockItem(TwigsBlocks.POLISHED_BLOODSTONE_STAIRS, new Item.Properties())); + public static final Item POLISHED_BLOODSTONE_SLAB = register("polished_bloodstone_slab", new BlockItem(TwigsBlocks.POLISHED_BLOODSTONE_SLAB, new Item.Properties())); + public static final Item POLISHED_BLOODSTONE_BRICKS = register("polished_bloodstone_bricks", new BlockItem(TwigsBlocks.POLISHED_BLOODSTONE_BRICKS, new Item.Properties())); + public static final Item POLISHED_BLOODSTONE_BRICK_STAIRS = register("polished_bloodstone_brick_stairs", new BlockItem(TwigsBlocks.POLISHED_BLOODSTONE_BRICK_STAIRS, new Item.Properties())); + public static final Item POLISHED_BLOODSTONE_BRICK_SLAB = register("polished_bloodstone_brick_slab", new BlockItem(TwigsBlocks.POLISHED_BLOODSTONE_BRICK_SLAB, new Item.Properties())); + public static final Item POLISHED_BLOODSTONE_BRICK_WALL = register("polished_bloodstone_brick_wall", new BlockItem(TwigsBlocks.POLISHED_BLOODSTONE_BRICK_WALL, new Item.Properties())); + public static final Item CRACKED_POLISHED_BLOODSTONE_BRICKS = register("cracked_polished_bloodstone_bricks", new BlockItem(TwigsBlocks.CRACKED_POLISHED_BLOODSTONE_BRICKS, new Item.Properties())); //silt blocks - public static final Item SILT = register("silt", new BlockItem(TwigsBlocks.SILT, new FabricItemSettings())); - public static final Item SILT_BALL = register("silt_ball", new Item(new FabricItemSettings())); - public static final Item SILT_BRICK = register("silt_brick", new Item(new FabricItemSettings())); - public static final Item SILT_BRICKS = register("silt_bricks", new BlockItem(TwigsBlocks.SILT_BRICKS, new FabricItemSettings())); - public static final Item SILT_BRICK_STAIRS = register("silt_brick_stairs", new BlockItem(TwigsBlocks.SILT_BRICK_STAIRS, new FabricItemSettings())); - public static final Item SILT_BRICK_SLAB = register("silt_brick_slab", new BlockItem(TwigsBlocks.SILT_BRICK_SLAB, new FabricItemSettings())); - public static final Item SILT_BRICK_WALL = register("silt_brick_wall", new BlockItem(TwigsBlocks.SILT_BRICK_WALL, new FabricItemSettings())); - public static final Item MIXED_SILT_BRICKS = register("mixed_silt_bricks", new BlockItem(TwigsBlocks.MIXED_SILT_BRICKS, new FabricItemSettings())); - public static final Item CHISELED_SILT_BRICKS = register("chiseled_silt_bricks", new BlockItem(TwigsBlocks.CHISELED_SILT_BRICKS, new FabricItemSettings())); - public static final Item CRACKED_SILT_BRICKS = register("cracked_silt_bricks", new BlockItem(TwigsBlocks.CRACKED_SILT_BRICKS, new FabricItemSettings())); - public static final Item SILT_BRICK_TRAIL = register("silt_brick_trail", new BlockItem(TwigsBlocks.SILT_BRICK_TRAIL, new FabricItemSettings())); + public static final Item SILT = register("silt", new BlockItem(TwigsBlocks.SILT, new Item.Properties())); + public static final Item SILT_BALL = register("silt_ball", new Item(new Item.Properties())); + public static final Item SILT_BRICK = register("silt_brick", new Item(new Item.Properties())); + public static final Item SILT_BRICKS = register("silt_bricks", new BlockItem(TwigsBlocks.SILT_BRICKS, new Item.Properties())); + public static final Item SILT_BRICK_STAIRS = register("silt_brick_stairs", new BlockItem(TwigsBlocks.SILT_BRICK_STAIRS, new Item.Properties())); + public static final Item SILT_BRICK_SLAB = register("silt_brick_slab", new BlockItem(TwigsBlocks.SILT_BRICK_SLAB, new Item.Properties())); + public static final Item SILT_BRICK_WALL = register("silt_brick_wall", new BlockItem(TwigsBlocks.SILT_BRICK_WALL, new Item.Properties())); + public static final Item MIXED_SILT_BRICKS = register("mixed_silt_bricks", new BlockItem(TwigsBlocks.MIXED_SILT_BRICKS, new Item.Properties())); + public static final Item CHISELED_SILT_BRICKS = register("chiseled_silt_bricks", new BlockItem(TwigsBlocks.CHISELED_SILT_BRICKS, new Item.Properties())); + public static final Item CRACKED_SILT_BRICKS = register("cracked_silt_bricks", new BlockItem(TwigsBlocks.CRACKED_SILT_BRICKS, new Item.Properties())); + public static final Item SILT_BRICK_TRAIL = register("silt_brick_trail", new BlockItem(TwigsBlocks.SILT_BRICK_TRAIL, new Item.Properties())); - public static final Item SILT_POT = register("silt_pot", new BlockItem(TwigsBlocks.SILT_POT, new FabricItemSettings())); - public static final Item WHITE_SILT_POT = register("white_silt_pot", new BlockItem(TwigsBlocks.WHITE_SILT_POT, new FabricItemSettings())); - public static final Item ORANGE_SILT_POT = register("orange_silt_pot", new BlockItem(TwigsBlocks.ORANGE_SILT_POT, new FabricItemSettings())); - public static final Item MAGENTA_SILT_POT = register("magenta_silt_pot", new BlockItem(TwigsBlocks.MAGENTA_SILT_POT, new FabricItemSettings())); - public static final Item LIGHT_BLUE_SILT_POT = register("light_blue_silt_pot", new BlockItem(TwigsBlocks.LIGHT_BLUE_SILT_POT, new FabricItemSettings())); - public static final Item YELLOW_SILT_POT = register("yellow_silt_pot", new BlockItem(TwigsBlocks.YELLOW_SILT_POT, new FabricItemSettings())); - public static final Item LIME_SILT_POT = register("lime_silt_pot", new BlockItem(TwigsBlocks.LIME_SILT_POT, new FabricItemSettings())); - public static final Item PINK_SILT_POT = register("pink_silt_pot", new BlockItem(TwigsBlocks.PINK_SILT_POT, new FabricItemSettings())); - public static final Item GRAY_SILT_POT = register("gray_silt_pot", new BlockItem(TwigsBlocks.GRAY_SILT_POT, new FabricItemSettings())); - public static final Item LIGHT_GRAY_SILT_POT = register("light_gray_silt_pot", new BlockItem(TwigsBlocks.LIGHT_GRAY_SILT_POT, new FabricItemSettings())); - public static final Item CYAN_SILT_POT = register("cyan_silt_pot", new BlockItem(TwigsBlocks.CYAN_SILT_POT, new FabricItemSettings())); - public static final Item PURPLE_SILT_POT = register("purple_silt_pot", new BlockItem(TwigsBlocks.PURPLE_SILT_POT, new FabricItemSettings())); - public static final Item BLUE_SILT_POT = register("blue_silt_pot", new BlockItem(TwigsBlocks.BLUE_SILT_POT, new FabricItemSettings())); - public static final Item BROWN_SILT_POT = register("brown_silt_pot", new BlockItem(TwigsBlocks.BROWN_SILT_POT, new FabricItemSettings())); - public static final Item GREEN_SILT_POT = register("green_silt_pot", new BlockItem(TwigsBlocks.GREEN_SILT_POT, new FabricItemSettings())); - public static final Item RED_SILT_POT = register("red_silt_pot", new BlockItem(TwigsBlocks.RED_SILT_POT, new FabricItemSettings())); - public static final Item BLACK_SILT_POT = register("black_silt_pot", new BlockItem(TwigsBlocks.BLACK_SILT_POT, new FabricItemSettings())); + public static final Item SILT_POT = register("silt_pot", new BlockItem(TwigsBlocks.SILT_POT, new Item.Properties())); + public static final Item WHITE_SILT_POT = register("white_silt_pot", new BlockItem(TwigsBlocks.WHITE_SILT_POT, new Item.Properties())); + public static final Item ORANGE_SILT_POT = register("orange_silt_pot", new BlockItem(TwigsBlocks.ORANGE_SILT_POT, new Item.Properties())); + public static final Item MAGENTA_SILT_POT = register("magenta_silt_pot", new BlockItem(TwigsBlocks.MAGENTA_SILT_POT, new Item.Properties())); + public static final Item LIGHT_BLUE_SILT_POT = register("light_blue_silt_pot", new BlockItem(TwigsBlocks.LIGHT_BLUE_SILT_POT, new Item.Properties())); + public static final Item YELLOW_SILT_POT = register("yellow_silt_pot", new BlockItem(TwigsBlocks.YELLOW_SILT_POT, new Item.Properties())); + public static final Item LIME_SILT_POT = register("lime_silt_pot", new BlockItem(TwigsBlocks.LIME_SILT_POT, new Item.Properties())); + public static final Item PINK_SILT_POT = register("pink_silt_pot", new BlockItem(TwigsBlocks.PINK_SILT_POT, new Item.Properties())); + public static final Item GRAY_SILT_POT = register("gray_silt_pot", new BlockItem(TwigsBlocks.GRAY_SILT_POT, new Item.Properties())); + public static final Item LIGHT_GRAY_SILT_POT = register("light_gray_silt_pot", new BlockItem(TwigsBlocks.LIGHT_GRAY_SILT_POT, new Item.Properties())); + public static final Item CYAN_SILT_POT = register("cyan_silt_pot", new BlockItem(TwigsBlocks.CYAN_SILT_POT, new Item.Properties())); + public static final Item PURPLE_SILT_POT = register("purple_silt_pot", new BlockItem(TwigsBlocks.PURPLE_SILT_POT, new Item.Properties())); + public static final Item BLUE_SILT_POT = register("blue_silt_pot", new BlockItem(TwigsBlocks.BLUE_SILT_POT, new Item.Properties())); + public static final Item BROWN_SILT_POT = register("brown_silt_pot", new BlockItem(TwigsBlocks.BROWN_SILT_POT, new Item.Properties())); + public static final Item GREEN_SILT_POT = register("green_silt_pot", new BlockItem(TwigsBlocks.GREEN_SILT_POT, new Item.Properties())); + public static final Item RED_SILT_POT = register("red_silt_pot", new BlockItem(TwigsBlocks.RED_SILT_POT, new Item.Properties())); + public static final Item BLACK_SILT_POT = register("black_silt_pot", new BlockItem(TwigsBlocks.BLACK_SILT_POT, new Item.Properties())); - public static final Item PACKED_SILT = register("packed_silt", new BlockItem(TwigsBlocks.PACKED_SILT, new FabricItemSettings())); - public static final Item WHITE_PACKED_SILT = register("white_packed_silt", new BlockItem(TwigsBlocks.WHITE_PACKED_SILT, new FabricItemSettings())); - public static final Item ORANGE_PACKED_SILT = register("orange_packed_silt", new BlockItem(TwigsBlocks.ORANGE_PACKED_SILT, new FabricItemSettings())); - public static final Item MAGENTA_PACKED_SILT = register("magenta_packed_silt", new BlockItem(TwigsBlocks.MAGENTA_PACKED_SILT, new FabricItemSettings())); - public static final Item LIGHT_BLUE_PACKED_SILT = register("light_blue_packed_silt", new BlockItem(TwigsBlocks.LIGHT_BLUE_PACKED_SILT, new FabricItemSettings())); - public static final Item YELLOW_PACKED_SILT = register("yellow_packed_silt", new BlockItem(TwigsBlocks.YELLOW_PACKED_SILT, new FabricItemSettings())); - public static final Item LIME_PACKED_SILT = register("lime_packed_silt", new BlockItem(TwigsBlocks.LIME_PACKED_SILT, new FabricItemSettings())); - public static final Item PINK_PACKED_SILT = register("pink_packed_silt", new BlockItem(TwigsBlocks.PINK_PACKED_SILT, new FabricItemSettings())); - public static final Item GRAY_PACKED_SILT = register("gray_packed_silt", new BlockItem(TwigsBlocks.GRAY_PACKED_SILT, new FabricItemSettings())); - public static final Item LIGHT_GRAY_PACKED_SILT = register("light_gray_packed_silt", new BlockItem(TwigsBlocks.LIGHT_GRAY_PACKED_SILT, new FabricItemSettings())); - public static final Item CYAN_PACKED_SILT = register("cyan_packed_silt", new BlockItem(TwigsBlocks.CYAN_PACKED_SILT, new FabricItemSettings())); - public static final Item PURPLE_PACKED_SILT = register("purple_packed_silt", new BlockItem(TwigsBlocks.PURPLE_PACKED_SILT, new FabricItemSettings())); - public static final Item BLUE_PACKED_SILT = register("blue_packed_silt", new BlockItem(TwigsBlocks.BLUE_PACKED_SILT, new FabricItemSettings())); - public static final Item BROWN_PACKED_SILT = register("brown_packed_silt", new BlockItem(TwigsBlocks.BROWN_PACKED_SILT, new FabricItemSettings())); - public static final Item GREEN_PACKED_SILT = register("green_packed_silt", new BlockItem(TwigsBlocks.GREEN_PACKED_SILT, new FabricItemSettings())); - public static final Item RED_PACKED_SILT = register("red_packed_silt", new BlockItem(TwigsBlocks.RED_PACKED_SILT, new FabricItemSettings())); - public static final Item BLACK_PACKED_SILT = register("black_packed_silt", new BlockItem(TwigsBlocks.BLACK_PACKED_SILT, new FabricItemSettings())); + public static final Item PACKED_SILT = register("packed_silt", new BlockItem(TwigsBlocks.PACKED_SILT, new Item.Properties())); + public static final Item WHITE_PACKED_SILT = register("white_packed_silt", new BlockItem(TwigsBlocks.WHITE_PACKED_SILT, new Item.Properties())); + public static final Item ORANGE_PACKED_SILT = register("orange_packed_silt", new BlockItem(TwigsBlocks.ORANGE_PACKED_SILT, new Item.Properties())); + public static final Item MAGENTA_PACKED_SILT = register("magenta_packed_silt", new BlockItem(TwigsBlocks.MAGENTA_PACKED_SILT, new Item.Properties())); + public static final Item LIGHT_BLUE_PACKED_SILT = register("light_blue_packed_silt", new BlockItem(TwigsBlocks.LIGHT_BLUE_PACKED_SILT, new Item.Properties())); + public static final Item YELLOW_PACKED_SILT = register("yellow_packed_silt", new BlockItem(TwigsBlocks.YELLOW_PACKED_SILT, new Item.Properties())); + public static final Item LIME_PACKED_SILT = register("lime_packed_silt", new BlockItem(TwigsBlocks.LIME_PACKED_SILT, new Item.Properties())); + public static final Item PINK_PACKED_SILT = register("pink_packed_silt", new BlockItem(TwigsBlocks.PINK_PACKED_SILT, new Item.Properties())); + public static final Item GRAY_PACKED_SILT = register("gray_packed_silt", new BlockItem(TwigsBlocks.GRAY_PACKED_SILT, new Item.Properties())); + public static final Item LIGHT_GRAY_PACKED_SILT = register("light_gray_packed_silt", new BlockItem(TwigsBlocks.LIGHT_GRAY_PACKED_SILT, new Item.Properties())); + public static final Item CYAN_PACKED_SILT = register("cyan_packed_silt", new BlockItem(TwigsBlocks.CYAN_PACKED_SILT, new Item.Properties())); + public static final Item PURPLE_PACKED_SILT = register("purple_packed_silt", new BlockItem(TwigsBlocks.PURPLE_PACKED_SILT, new Item.Properties())); + public static final Item BLUE_PACKED_SILT = register("blue_packed_silt", new BlockItem(TwigsBlocks.BLUE_PACKED_SILT, new Item.Properties())); + public static final Item BROWN_PACKED_SILT = register("brown_packed_silt", new BlockItem(TwigsBlocks.BROWN_PACKED_SILT, new Item.Properties())); + public static final Item GREEN_PACKED_SILT = register("green_packed_silt", new BlockItem(TwigsBlocks.GREEN_PACKED_SILT, new Item.Properties())); + public static final Item RED_PACKED_SILT = register("red_packed_silt", new BlockItem(TwigsBlocks.RED_PACKED_SILT, new Item.Properties())); + public static final Item BLACK_PACKED_SILT = register("black_packed_silt", new BlockItem(TwigsBlocks.BLACK_PACKED_SILT, new Item.Properties())); - public static final Item SILT_SHINGLES = register("silt_shingles", new BlockItem(TwigsBlocks.SILT_SHINGLES, new FabricItemSettings())); - public static final Item WHITE_SILT_SHINGLES = register("white_silt_shingles", new BlockItem(TwigsBlocks.WHITE_SILT_SHINGLES, new FabricItemSettings())); - public static final Item ORANGE_SILT_SHINGLES = register("orange_silt_shingles", new BlockItem(TwigsBlocks.ORANGE_SILT_SHINGLES, new FabricItemSettings())); - public static final Item MAGENTA_SILT_SHINGLES = register("magenta_silt_shingles", new BlockItem(TwigsBlocks.MAGENTA_SILT_SHINGLES, new FabricItemSettings())); - public static final Item LIGHT_BLUE_SILT_SHINGLES = register("light_blue_silt_shingles", new BlockItem(TwigsBlocks.LIGHT_BLUE_SILT_SHINGLES, new FabricItemSettings())); - public static final Item YELLOW_SILT_SHINGLES = register("yellow_silt_shingles", new BlockItem(TwigsBlocks.YELLOW_SILT_SHINGLES, new FabricItemSettings())); - public static final Item LIME_SILT_SHINGLES = register("lime_silt_shingles", new BlockItem(TwigsBlocks.LIME_SILT_SHINGLES, new FabricItemSettings())); - public static final Item PINK_SILT_SHINGLES = register("pink_silt_shingles", new BlockItem(TwigsBlocks.PINK_SILT_SHINGLES, new FabricItemSettings())); - public static final Item GRAY_SILT_SHINGLES = register("gray_silt_shingles", new BlockItem(TwigsBlocks.GRAY_SILT_SHINGLES, new FabricItemSettings())); - public static final Item LIGHT_GRAY_SILT_SHINGLES = register("light_gray_silt_shingles", new BlockItem(TwigsBlocks.LIGHT_GRAY_SILT_SHINGLES, new FabricItemSettings())); - public static final Item CYAN_SILT_SHINGLES = register("cyan_silt_shingles", new BlockItem(TwigsBlocks.CYAN_SILT_SHINGLES, new FabricItemSettings())); - public static final Item PURPLE_SILT_SHINGLES = register("purple_silt_shingles", new BlockItem(TwigsBlocks.PURPLE_SILT_SHINGLES, new FabricItemSettings())); - public static final Item BLUE_SILT_SHINGLES = register("blue_silt_shingles", new BlockItem(TwigsBlocks.BLUE_SILT_SHINGLES, new FabricItemSettings())); - public static final Item BROWN_SILT_SHINGLES = register("brown_silt_shingles", new BlockItem(TwigsBlocks.BROWN_SILT_SHINGLES, new FabricItemSettings())); - public static final Item GREEN_SILT_SHINGLES = register("green_silt_shingles", new BlockItem(TwigsBlocks.GREEN_SILT_SHINGLES, new FabricItemSettings())); - public static final Item RED_SILT_SHINGLES = register("red_silt_shingles", new BlockItem(TwigsBlocks.RED_SILT_SHINGLES, new FabricItemSettings())); - public static final Item BLACK_SILT_SHINGLES = register("black_silt_shingles", new BlockItem(TwigsBlocks.BLACK_SILT_SHINGLES, new FabricItemSettings())); + public static final Item SILT_SHINGLES = register("silt_shingles", new BlockItem(TwigsBlocks.SILT_SHINGLES, new Item.Properties())); + public static final Item WHITE_SILT_SHINGLES = register("white_silt_shingles", new BlockItem(TwigsBlocks.WHITE_SILT_SHINGLES, new Item.Properties())); + public static final Item ORANGE_SILT_SHINGLES = register("orange_silt_shingles", new BlockItem(TwigsBlocks.ORANGE_SILT_SHINGLES, new Item.Properties())); + public static final Item MAGENTA_SILT_SHINGLES = register("magenta_silt_shingles", new BlockItem(TwigsBlocks.MAGENTA_SILT_SHINGLES, new Item.Properties())); + public static final Item LIGHT_BLUE_SILT_SHINGLES = register("light_blue_silt_shingles", new BlockItem(TwigsBlocks.LIGHT_BLUE_SILT_SHINGLES, new Item.Properties())); + public static final Item YELLOW_SILT_SHINGLES = register("yellow_silt_shingles", new BlockItem(TwigsBlocks.YELLOW_SILT_SHINGLES, new Item.Properties())); + public static final Item LIME_SILT_SHINGLES = register("lime_silt_shingles", new BlockItem(TwigsBlocks.LIME_SILT_SHINGLES, new Item.Properties())); + public static final Item PINK_SILT_SHINGLES = register("pink_silt_shingles", new BlockItem(TwigsBlocks.PINK_SILT_SHINGLES, new Item.Properties())); + public static final Item GRAY_SILT_SHINGLES = register("gray_silt_shingles", new BlockItem(TwigsBlocks.GRAY_SILT_SHINGLES, new Item.Properties())); + public static final Item LIGHT_GRAY_SILT_SHINGLES = register("light_gray_silt_shingles", new BlockItem(TwigsBlocks.LIGHT_GRAY_SILT_SHINGLES, new Item.Properties())); + public static final Item CYAN_SILT_SHINGLES = register("cyan_silt_shingles", new BlockItem(TwigsBlocks.CYAN_SILT_SHINGLES, new Item.Properties())); + public static final Item PURPLE_SILT_SHINGLES = register("purple_silt_shingles", new BlockItem(TwigsBlocks.PURPLE_SILT_SHINGLES, new Item.Properties())); + public static final Item BLUE_SILT_SHINGLES = register("blue_silt_shingles", new BlockItem(TwigsBlocks.BLUE_SILT_SHINGLES, new Item.Properties())); + public static final Item BROWN_SILT_SHINGLES = register("brown_silt_shingles", new BlockItem(TwigsBlocks.BROWN_SILT_SHINGLES, new Item.Properties())); + public static final Item GREEN_SILT_SHINGLES = register("green_silt_shingles", new BlockItem(TwigsBlocks.GREEN_SILT_SHINGLES, new Item.Properties())); + public static final Item RED_SILT_SHINGLES = register("red_silt_shingles", new BlockItem(TwigsBlocks.RED_SILT_SHINGLES, new Item.Properties())); + public static final Item BLACK_SILT_SHINGLES = register("black_silt_shingles", new BlockItem(TwigsBlocks.BLACK_SILT_SHINGLES, new Item.Properties())); - public static final Item SILT_SHINGLE_STAIRS = register("silt_shingle_stairs", new BlockItem(TwigsBlocks.SILT_SHINGLE_STAIRS, new FabricItemSettings())); - public static final Item WHITE_SILT_SHINGLE_STAIRS = register("white_silt_shingle_stairs", new BlockItem(TwigsBlocks.WHITE_SILT_SHINGLE_STAIRS, new FabricItemSettings())); - public static final Item ORANGE_SILT_SHINGLE_STAIRS = register("orange_silt_shingle_stairs", new BlockItem(TwigsBlocks.ORANGE_SILT_SHINGLE_STAIRS, new FabricItemSettings())); - public static final Item MAGENTA_SILT_SHINGLE_STAIRS = register("magenta_silt_shingle_stairs", new BlockItem(TwigsBlocks.MAGENTA_SILT_SHINGLE_STAIRS, new FabricItemSettings())); - public static final Item LIGHT_BLUE_SILT_SHINGLE_STAIRS = register("light_blue_silt_shingle_stairs", new BlockItem(TwigsBlocks.LIGHT_BLUE_SILT_SHINGLE_STAIRS, new FabricItemSettings())); - public static final Item YELLOW_SILT_SHINGLE_STAIRS = register("yellow_silt_shingle_stairs", new BlockItem(TwigsBlocks.YELLOW_SILT_SHINGLE_STAIRS, new FabricItemSettings())); - public static final Item LIME_SILT_SHINGLE_STAIRS = register("lime_silt_shingle_stairs", new BlockItem(TwigsBlocks.LIME_SILT_SHINGLE_STAIRS, new FabricItemSettings())); - public static final Item PINK_SILT_SHINGLE_STAIRS = register("pink_silt_shingle_stairs", new BlockItem(TwigsBlocks.PINK_SILT_SHINGLE_STAIRS, new FabricItemSettings())); - public static final Item GRAY_SILT_SHINGLE_STAIRS = register("gray_silt_shingle_stairs", new BlockItem(TwigsBlocks.GRAY_SILT_SHINGLE_STAIRS, new FabricItemSettings())); - public static final Item LIGHT_GRAY_SILT_SHINGLE_STAIRS = register("light_gray_silt_shingle_stairs", new BlockItem(TwigsBlocks.LIGHT_GRAY_SILT_SHINGLE_STAIRS, new FabricItemSettings())); - public static final Item CYAN_SILT_SHINGLE_STAIRS = register("cyan_silt_shingle_stairs", new BlockItem(TwigsBlocks.CYAN_SILT_SHINGLE_STAIRS, new FabricItemSettings())); - public static final Item PURPLE_SILT_SHINGLE_STAIRS = register("purple_silt_shingle_stairs", new BlockItem(TwigsBlocks.PURPLE_SILT_SHINGLE_STAIRS, new FabricItemSettings())); - public static final Item BLUE_SILT_SHINGLE_STAIRS = register("blue_silt_shingle_stairs", new BlockItem(TwigsBlocks.BLUE_SILT_SHINGLE_STAIRS, new FabricItemSettings())); - public static final Item BROWN_SILT_SHINGLE_STAIRS = register("brown_silt_shingle_stairs", new BlockItem(TwigsBlocks.BROWN_SILT_SHINGLE_STAIRS, new FabricItemSettings())); - public static final Item GREEN_SILT_SHINGLE_STAIRS = register("green_silt_shingle_stairs", new BlockItem(TwigsBlocks.GREEN_SILT_SHINGLE_STAIRS, new FabricItemSettings())); - public static final Item RED_SILT_SHINGLE_STAIRS = register("red_silt_shingle_stairs", new BlockItem(TwigsBlocks.RED_SILT_SHINGLE_STAIRS, new FabricItemSettings())); - public static final Item BLACK_SILT_SHINGLE_STAIRS = register("black_silt_shingle_stairs", new BlockItem(TwigsBlocks.BLACK_SILT_SHINGLE_STAIRS, new FabricItemSettings())); + public static final Item SILT_SHINGLE_STAIRS = register("silt_shingle_stairs", new BlockItem(TwigsBlocks.SILT_SHINGLE_STAIRS, new Item.Properties())); + public static final Item WHITE_SILT_SHINGLE_STAIRS = register("white_silt_shingle_stairs", new BlockItem(TwigsBlocks.WHITE_SILT_SHINGLE_STAIRS, new Item.Properties())); + public static final Item ORANGE_SILT_SHINGLE_STAIRS = register("orange_silt_shingle_stairs", new BlockItem(TwigsBlocks.ORANGE_SILT_SHINGLE_STAIRS, new Item.Properties())); + public static final Item MAGENTA_SILT_SHINGLE_STAIRS = register("magenta_silt_shingle_stairs", new BlockItem(TwigsBlocks.MAGENTA_SILT_SHINGLE_STAIRS, new Item.Properties())); + public static final Item LIGHT_BLUE_SILT_SHINGLE_STAIRS = register("light_blue_silt_shingle_stairs", new BlockItem(TwigsBlocks.LIGHT_BLUE_SILT_SHINGLE_STAIRS, new Item.Properties())); + public static final Item YELLOW_SILT_SHINGLE_STAIRS = register("yellow_silt_shingle_stairs", new BlockItem(TwigsBlocks.YELLOW_SILT_SHINGLE_STAIRS, new Item.Properties())); + public static final Item LIME_SILT_SHINGLE_STAIRS = register("lime_silt_shingle_stairs", new BlockItem(TwigsBlocks.LIME_SILT_SHINGLE_STAIRS, new Item.Properties())); + public static final Item PINK_SILT_SHINGLE_STAIRS = register("pink_silt_shingle_stairs", new BlockItem(TwigsBlocks.PINK_SILT_SHINGLE_STAIRS, new Item.Properties())); + public static final Item GRAY_SILT_SHINGLE_STAIRS = register("gray_silt_shingle_stairs", new BlockItem(TwigsBlocks.GRAY_SILT_SHINGLE_STAIRS, new Item.Properties())); + public static final Item LIGHT_GRAY_SILT_SHINGLE_STAIRS = register("light_gray_silt_shingle_stairs", new BlockItem(TwigsBlocks.LIGHT_GRAY_SILT_SHINGLE_STAIRS, new Item.Properties())); + public static final Item CYAN_SILT_SHINGLE_STAIRS = register("cyan_silt_shingle_stairs", new BlockItem(TwigsBlocks.CYAN_SILT_SHINGLE_STAIRS, new Item.Properties())); + public static final Item PURPLE_SILT_SHINGLE_STAIRS = register("purple_silt_shingle_stairs", new BlockItem(TwigsBlocks.PURPLE_SILT_SHINGLE_STAIRS, new Item.Properties())); + public static final Item BLUE_SILT_SHINGLE_STAIRS = register("blue_silt_shingle_stairs", new BlockItem(TwigsBlocks.BLUE_SILT_SHINGLE_STAIRS, new Item.Properties())); + public static final Item BROWN_SILT_SHINGLE_STAIRS = register("brown_silt_shingle_stairs", new BlockItem(TwigsBlocks.BROWN_SILT_SHINGLE_STAIRS, new Item.Properties())); + public static final Item GREEN_SILT_SHINGLE_STAIRS = register("green_silt_shingle_stairs", new BlockItem(TwigsBlocks.GREEN_SILT_SHINGLE_STAIRS, new Item.Properties())); + public static final Item RED_SILT_SHINGLE_STAIRS = register("red_silt_shingle_stairs", new BlockItem(TwigsBlocks.RED_SILT_SHINGLE_STAIRS, new Item.Properties())); + public static final Item BLACK_SILT_SHINGLE_STAIRS = register("black_silt_shingle_stairs", new BlockItem(TwigsBlocks.BLACK_SILT_SHINGLE_STAIRS, new Item.Properties())); - public static final Item SILT_SHINGLE_SLAB = register("silt_shingle_slab", new BlockItem(TwigsBlocks.SILT_SHINGLE_SLAB, new FabricItemSettings())); - public static final Item WHITE_SILT_SHINGLE_SLAB = register("white_silt_shingle_slab", new BlockItem(TwigsBlocks.WHITE_SILT_SHINGLE_SLAB, new FabricItemSettings())); - public static final Item ORANGE_SILT_SHINGLE_SLAB = register("orange_silt_shingle_slab", new BlockItem(TwigsBlocks.ORANGE_SILT_SHINGLE_SLAB, new FabricItemSettings())); - public static final Item MAGENTA_SILT_SHINGLE_SLAB = register("magenta_silt_shingle_slab", new BlockItem(TwigsBlocks.MAGENTA_SILT_SHINGLE_SLAB, new FabricItemSettings())); - public static final Item LIGHT_BLUE_SILT_SHINGLE_SLAB = register("light_blue_silt_shingle_slab", new BlockItem(TwigsBlocks.LIGHT_BLUE_SILT_SHINGLE_SLAB, new FabricItemSettings())); - public static final Item YELLOW_SILT_SHINGLE_SLAB = register("yellow_silt_shingle_slab", new BlockItem(TwigsBlocks.YELLOW_SILT_SHINGLE_SLAB, new FabricItemSettings())); - public static final Item LIME_SILT_SHINGLE_SLAB = register("lime_silt_shingle_slab", new BlockItem(TwigsBlocks.LIME_SILT_SHINGLE_SLAB, new FabricItemSettings())); - public static final Item PINK_SILT_SHINGLE_SLAB = register("pink_silt_shingle_slab", new BlockItem(TwigsBlocks.PINK_SILT_SHINGLE_SLAB, new FabricItemSettings())); - public static final Item GRAY_SILT_SHINGLE_SLAB = register("gray_silt_shingle_slab", new BlockItem(TwigsBlocks.GRAY_SILT_SHINGLE_SLAB, new FabricItemSettings())); - public static final Item LIGHT_GRAY_SILT_SHINGLE_SLAB = register("light_gray_silt_shingle_slab", new BlockItem(TwigsBlocks.LIGHT_GRAY_SILT_SHINGLE_SLAB, new FabricItemSettings())); - public static final Item CYAN_SILT_SHINGLE_SLAB = register("cyan_silt_shingle_slab", new BlockItem(TwigsBlocks.CYAN_SILT_SHINGLE_SLAB, new FabricItemSettings())); - public static final Item PURPLE_SILT_SHINGLE_SLAB = register("purple_silt_shingle_slab", new BlockItem(TwigsBlocks.PURPLE_SILT_SHINGLE_SLAB, new FabricItemSettings())); - public static final Item BLUE_SILT_SHINGLE_SLAB = register("blue_silt_shingle_slab", new BlockItem(TwigsBlocks.BLUE_SILT_SHINGLE_SLAB, new FabricItemSettings())); - public static final Item BROWN_SILT_SHINGLE_SLAB = register("brown_silt_shingle_slab", new BlockItem(TwigsBlocks.BROWN_SILT_SHINGLE_SLAB, new FabricItemSettings())); - public static final Item GREEN_SILT_SHINGLE_SLAB = register("green_silt_shingle_slab", new BlockItem(TwigsBlocks.GREEN_SILT_SHINGLE_SLAB, new FabricItemSettings())); - public static final Item RED_SILT_SHINGLE_SLAB = register("red_silt_shingle_slab", new BlockItem(TwigsBlocks.RED_SILT_SHINGLE_SLAB, new FabricItemSettings())); - public static final Item BLACK_SILT_SHINGLE_SLAB = register("black_silt_shingle_slab", new BlockItem(TwigsBlocks.BLACK_SILT_SHINGLE_SLAB, new FabricItemSettings())); + public static final Item SILT_SHINGLE_SLAB = register("silt_shingle_slab", new BlockItem(TwigsBlocks.SILT_SHINGLE_SLAB, new Item.Properties())); + public static final Item WHITE_SILT_SHINGLE_SLAB = register("white_silt_shingle_slab", new BlockItem(TwigsBlocks.WHITE_SILT_SHINGLE_SLAB, new Item.Properties())); + public static final Item ORANGE_SILT_SHINGLE_SLAB = register("orange_silt_shingle_slab", new BlockItem(TwigsBlocks.ORANGE_SILT_SHINGLE_SLAB, new Item.Properties())); + public static final Item MAGENTA_SILT_SHINGLE_SLAB = register("magenta_silt_shingle_slab", new BlockItem(TwigsBlocks.MAGENTA_SILT_SHINGLE_SLAB, new Item.Properties())); + public static final Item LIGHT_BLUE_SILT_SHINGLE_SLAB = register("light_blue_silt_shingle_slab", new BlockItem(TwigsBlocks.LIGHT_BLUE_SILT_SHINGLE_SLAB, new Item.Properties())); + public static final Item YELLOW_SILT_SHINGLE_SLAB = register("yellow_silt_shingle_slab", new BlockItem(TwigsBlocks.YELLOW_SILT_SHINGLE_SLAB, new Item.Properties())); + public static final Item LIME_SILT_SHINGLE_SLAB = register("lime_silt_shingle_slab", new BlockItem(TwigsBlocks.LIME_SILT_SHINGLE_SLAB, new Item.Properties())); + public static final Item PINK_SILT_SHINGLE_SLAB = register("pink_silt_shingle_slab", new BlockItem(TwigsBlocks.PINK_SILT_SHINGLE_SLAB, new Item.Properties())); + public static final Item GRAY_SILT_SHINGLE_SLAB = register("gray_silt_shingle_slab", new BlockItem(TwigsBlocks.GRAY_SILT_SHINGLE_SLAB, new Item.Properties())); + public static final Item LIGHT_GRAY_SILT_SHINGLE_SLAB = register("light_gray_silt_shingle_slab", new BlockItem(TwigsBlocks.LIGHT_GRAY_SILT_SHINGLE_SLAB, new Item.Properties())); + public static final Item CYAN_SILT_SHINGLE_SLAB = register("cyan_silt_shingle_slab", new BlockItem(TwigsBlocks.CYAN_SILT_SHINGLE_SLAB, new Item.Properties())); + public static final Item PURPLE_SILT_SHINGLE_SLAB = register("purple_silt_shingle_slab", new BlockItem(TwigsBlocks.PURPLE_SILT_SHINGLE_SLAB, new Item.Properties())); + public static final Item BLUE_SILT_SHINGLE_SLAB = register("blue_silt_shingle_slab", new BlockItem(TwigsBlocks.BLUE_SILT_SHINGLE_SLAB, new Item.Properties())); + public static final Item BROWN_SILT_SHINGLE_SLAB = register("brown_silt_shingle_slab", new BlockItem(TwigsBlocks.BROWN_SILT_SHINGLE_SLAB, new Item.Properties())); + public static final Item GREEN_SILT_SHINGLE_SLAB = register("green_silt_shingle_slab", new BlockItem(TwigsBlocks.GREEN_SILT_SHINGLE_SLAB, new Item.Properties())); + public static final Item RED_SILT_SHINGLE_SLAB = register("red_silt_shingle_slab", new BlockItem(TwigsBlocks.RED_SILT_SHINGLE_SLAB, new Item.Properties())); + public static final Item BLACK_SILT_SHINGLE_SLAB = register("black_silt_shingle_slab", new BlockItem(TwigsBlocks.BLACK_SILT_SHINGLE_SLAB, new Item.Properties())); - public static final Item SILT_SHINGLE_WALL = register("silt_shingle_wall", new BlockItem(TwigsBlocks.SILT_SHINGLE_WALL, new FabricItemSettings())); - public static final Item WHITE_SILT_SHINGLE_WALL = register("white_silt_shingle_wall", new BlockItem(TwigsBlocks.WHITE_SILT_SHINGLE_WALL, new FabricItemSettings())); - public static final Item ORANGE_SILT_SHINGLE_WALL = register("orange_silt_shingle_wall", new BlockItem(TwigsBlocks.ORANGE_SILT_SHINGLE_WALL, new FabricItemSettings())); - public static final Item MAGENTA_SILT_SHINGLE_WALL = register("magenta_silt_shingle_wall", new BlockItem(TwigsBlocks.MAGENTA_SILT_SHINGLE_WALL, new FabricItemSettings())); - public static final Item LIGHT_BLUE_SILT_SHINGLE_WALL = register("light_blue_silt_shingle_wall", new BlockItem(TwigsBlocks.LIGHT_BLUE_SILT_SHINGLE_WALL, new FabricItemSettings())); - public static final Item YELLOW_SILT_SHINGLE_WALL = register("yellow_silt_shingle_wall", new BlockItem(TwigsBlocks.YELLOW_SILT_SHINGLE_WALL, new FabricItemSettings())); - public static final Item LIME_SILT_SHINGLE_WALL = register("lime_silt_shingle_wall", new BlockItem(TwigsBlocks.LIME_SILT_SHINGLE_WALL, new FabricItemSettings())); - public static final Item PINK_SILT_SHINGLE_WALL = register("pink_silt_shingle_wall", new BlockItem(TwigsBlocks.PINK_SILT_SHINGLE_WALL, new FabricItemSettings())); - public static final Item GRAY_SILT_SHINGLE_WALL = register("gray_silt_shingle_wall", new BlockItem(TwigsBlocks.GRAY_SILT_SHINGLE_WALL, new FabricItemSettings())); - public static final Item LIGHT_GRAY_SILT_SHINGLE_WALL = register("light_gray_silt_shingle_wall", new BlockItem(TwigsBlocks.LIGHT_GRAY_SILT_SHINGLE_WALL, new FabricItemSettings())); - public static final Item CYAN_SILT_SHINGLE_WALL = register("cyan_silt_shingle_wall", new BlockItem(TwigsBlocks.CYAN_SILT_SHINGLE_WALL, new FabricItemSettings())); - public static final Item PURPLE_SILT_SHINGLE_WALL = register("purple_silt_shingle_wall", new BlockItem(TwigsBlocks.PURPLE_SILT_SHINGLE_WALL, new FabricItemSettings())); - public static final Item BLUE_SILT_SHINGLE_WALL = register("blue_silt_shingle_wall", new BlockItem(TwigsBlocks.BLUE_SILT_SHINGLE_WALL, new FabricItemSettings())); - public static final Item BROWN_SILT_SHINGLE_WALL = register("brown_silt_shingle_wall", new BlockItem(TwigsBlocks.BROWN_SILT_SHINGLE_WALL, new FabricItemSettings())); - public static final Item GREEN_SILT_SHINGLE_WALL = register("green_silt_shingle_wall", new BlockItem(TwigsBlocks.GREEN_SILT_SHINGLE_WALL, new FabricItemSettings())); - public static final Item RED_SILT_SHINGLE_WALL = register("red_silt_shingle_wall", new BlockItem(TwigsBlocks.RED_SILT_SHINGLE_WALL, new FabricItemSettings())); - public static final Item BLACK_SILT_SHINGLE_WALL = register("black_silt_shingle_wall", new BlockItem(TwigsBlocks.BLACK_SILT_SHINGLE_WALL, new FabricItemSettings())); + public static final Item SILT_SHINGLE_WALL = register("silt_shingle_wall", new BlockItem(TwigsBlocks.SILT_SHINGLE_WALL, new Item.Properties())); + public static final Item WHITE_SILT_SHINGLE_WALL = register("white_silt_shingle_wall", new BlockItem(TwigsBlocks.WHITE_SILT_SHINGLE_WALL, new Item.Properties())); + public static final Item ORANGE_SILT_SHINGLE_WALL = register("orange_silt_shingle_wall", new BlockItem(TwigsBlocks.ORANGE_SILT_SHINGLE_WALL, new Item.Properties())); + public static final Item MAGENTA_SILT_SHINGLE_WALL = register("magenta_silt_shingle_wall", new BlockItem(TwigsBlocks.MAGENTA_SILT_SHINGLE_WALL, new Item.Properties())); + public static final Item LIGHT_BLUE_SILT_SHINGLE_WALL = register("light_blue_silt_shingle_wall", new BlockItem(TwigsBlocks.LIGHT_BLUE_SILT_SHINGLE_WALL, new Item.Properties())); + public static final Item YELLOW_SILT_SHINGLE_WALL = register("yellow_silt_shingle_wall", new BlockItem(TwigsBlocks.YELLOW_SILT_SHINGLE_WALL, new Item.Properties())); + public static final Item LIME_SILT_SHINGLE_WALL = register("lime_silt_shingle_wall", new BlockItem(TwigsBlocks.LIME_SILT_SHINGLE_WALL, new Item.Properties())); + public static final Item PINK_SILT_SHINGLE_WALL = register("pink_silt_shingle_wall", new BlockItem(TwigsBlocks.PINK_SILT_SHINGLE_WALL, new Item.Properties())); + public static final Item GRAY_SILT_SHINGLE_WALL = register("gray_silt_shingle_wall", new BlockItem(TwigsBlocks.GRAY_SILT_SHINGLE_WALL, new Item.Properties())); + public static final Item LIGHT_GRAY_SILT_SHINGLE_WALL = register("light_gray_silt_shingle_wall", new BlockItem(TwigsBlocks.LIGHT_GRAY_SILT_SHINGLE_WALL, new Item.Properties())); + public static final Item CYAN_SILT_SHINGLE_WALL = register("cyan_silt_shingle_wall", new BlockItem(TwigsBlocks.CYAN_SILT_SHINGLE_WALL, new Item.Properties())); + public static final Item PURPLE_SILT_SHINGLE_WALL = register("purple_silt_shingle_wall", new BlockItem(TwigsBlocks.PURPLE_SILT_SHINGLE_WALL, new Item.Properties())); + public static final Item BLUE_SILT_SHINGLE_WALL = register("blue_silt_shingle_wall", new BlockItem(TwigsBlocks.BLUE_SILT_SHINGLE_WALL, new Item.Properties())); + public static final Item BROWN_SILT_SHINGLE_WALL = register("brown_silt_shingle_wall", new BlockItem(TwigsBlocks.BROWN_SILT_SHINGLE_WALL, new Item.Properties())); + public static final Item GREEN_SILT_SHINGLE_WALL = register("green_silt_shingle_wall", new BlockItem(TwigsBlocks.GREEN_SILT_SHINGLE_WALL, new Item.Properties())); + public static final Item RED_SILT_SHINGLE_WALL = register("red_silt_shingle_wall", new BlockItem(TwigsBlocks.RED_SILT_SHINGLE_WALL, new Item.Properties())); + public static final Item BLACK_SILT_SHINGLE_WALL = register("black_silt_shingle_wall", new BlockItem(TwigsBlocks.BLACK_SILT_SHINGLE_WALL, new Item.Properties())); static { CompostingChanceRegistry composting = CompostingChanceRegistry.INSTANCE; @@ -332,6 +327,6 @@ public class TwigsItems { } private static Item register(String id, Item item) { - return Registry.register(BuiltInRegistries.ITEM, new ResourceLocation(Twigs.MOD_ID, id), item); + return Registry.register(BuiltInRegistries.ITEM, ResourceLocation.fromNamespaceAndPath(Twigs.MOD_ID, id), item); } } diff --git a/src/main/java/com/ninni/twigs/registry/TwigsLootTableAdditions.java b/src/main/java/com/ninni/twigs/registry/TwigsLootTableAdditions.java index bba3040f..051e15db 100644 --- a/src/main/java/com/ninni/twigs/registry/TwigsLootTableAdditions.java +++ b/src/main/java/com/ninni/twigs/registry/TwigsLootTableAdditions.java @@ -3,13 +3,12 @@ import com.google.common.base.Suppliers; import com.ninni.twigs.mixin.LootItemAccessor; -import net.fabricmc.fabric.api.loot.v2.LootTableEvents; -import net.minecraft.advancements.critereon.EnchantmentPredicate; -import net.minecraft.advancements.critereon.ItemPredicate; -import net.minecraft.advancements.critereon.MinMaxBounds; -import net.minecraft.advancements.critereon.StatePropertiesPredicate; +import net.fabricmc.fabric.api.loot.v3.LootTableEvents; +import net.minecraft.advancements.critereon.*; +import net.minecraft.core.Holder; import net.minecraft.core.registries.BuiltInRegistries; -import net.minecraft.resources.ResourceLocation; +import net.minecraft.core.registries.Registries; +import net.minecraft.resources.ResourceKey; import net.minecraft.world.item.Items; import net.minecraft.world.item.enchantment.Enchantments; import net.minecraft.world.level.block.BambooStalkBlock; @@ -18,17 +17,15 @@ import net.minecraft.world.level.block.LeavesBlock; import net.minecraft.world.level.block.state.properties.BambooLeaves; import net.minecraft.world.level.storage.loot.LootPool; +import net.minecraft.world.level.storage.loot.LootTable; import net.minecraft.world.level.storage.loot.entries.LootItem; import net.minecraft.world.level.storage.loot.entries.LootPoolEntryContainer; import net.minecraft.world.level.storage.loot.functions.LootItemFunction; import net.minecraft.world.level.storage.loot.functions.SetItemCountFunction; -import net.minecraft.world.level.storage.loot.predicates.InvertedLootItemCondition; -import net.minecraft.world.level.storage.loot.predicates.LootItemBlockStatePropertyCondition; -import net.minecraft.world.level.storage.loot.predicates.LootItemCondition; -import net.minecraft.world.level.storage.loot.predicates.LootItemRandomChanceCondition; -import net.minecraft.world.level.storage.loot.predicates.MatchTool; +import net.minecraft.world.level.storage.loot.predicates.*; import net.minecraft.world.level.storage.loot.providers.number.UniformGenerator; +import java.util.List; import java.util.Set; import java.util.function.Supplier; import java.util.stream.Collectors; @@ -36,14 +33,14 @@ public class TwigsLootTableAdditions { static { - Supplier> leafTablesSupplier = Suppliers.memoize(() -> { + Supplier>> leafTablesSupplier = Suppliers.memoize(() -> { return BuiltInRegistries.BLOCK.stream() .filter(LeavesBlock.class::isInstance) .map(Block::getLootTable) .collect(Collectors.toSet()); }); - LootTableEvents.MODIFY.register((resourceManager, lootManager, id, tableBuilder, source) -> { - if (equals(id, Blocks.BAMBOO)) { + LootTableEvents.MODIFY.register((key, tableBuilder, source, registries) -> { + if (equals(key, Blocks.BAMBOO)) { tableBuilder.pool( LootPool.lootPool() .with( @@ -56,22 +53,23 @@ public class TwigsLootTableAdditions { ).build() ).build() ); - } else if (equals(id, Blocks.GRAVEL)) { + } else if (equals(key, Blocks.GRAVEL)) { + var enchants = registries.lookupOrThrow(Registries.ENCHANTMENT); tableBuilder.pool( LootPool.lootPool() - .with( - LootItem.lootTableItem(TwigsItems.PEBBLE) - .when(InvertedLootItemCondition.invert( - MatchTool.toolMatches( - ItemPredicate.Builder.item() - .hasEnchantment(new EnchantmentPredicate(Enchantments.SILK_TOUCH, MinMaxBounds.Ints.ANY))) - )) - .when(LootItemRandomChanceCondition.randomChance(0.2F)) - .apply(SetItemCountFunction.setCount(UniformGenerator.between(1.0F, 3.0F))).build() - ).build() + .with(LootItem.lootTableItem(TwigsItems.PEBBLE) + .when(MatchTool.toolMatches(ItemPredicate.Builder.item().withSubPredicate(ItemSubPredicates.ENCHANTMENTS, + ItemEnchantmentsPredicate.enchantments(List.of( + new EnchantmentPredicate(enchants.getOrThrow(Enchantments.SILK_TOUCH), MinMaxBounds.Ints.atLeast(1)) + )))).invert() + ) + .when(LootItemRandomChanceCondition.randomChance(0.2F)) + .apply(SetItemCountFunction.setCount(UniformGenerator.between(1.0F, 3.0F))).build() + ) + .build() ); } else { - if (leafTablesSupplier.get().contains(id)) { + if (leafTablesSupplier.get().contains(key)) { tableBuilder.modifyPools(original -> { LootPool pool = original.build(); LootPool.Builder builder = LootPool.lootPool(); @@ -82,7 +80,9 @@ public class TwigsLootTableAdditions { builder.setBonusRolls(pool.bonusRolls); for (LootPoolEntryContainer entry : pool.entries) { - if (entry instanceof LootItemAccessor itemEntry && itemEntry.getItem() == Items.STICK) itemEntry.setItem(TwigsItems.TWIG); + if (entry instanceof LootItemAccessor itemEntry && itemEntry.getItem().value() == Items.STICK) { + itemEntry.setItem(new Holder.Direct<>(TwigsItems.TWIG)); + } builder.with(entry); } }); @@ -91,7 +91,7 @@ public class TwigsLootTableAdditions { }); } - public static boolean equals(ResourceLocation id, Block block) { + public static boolean equals(ResourceKey id, Block block) { return id.equals(block.getLootTable()); } } diff --git a/src/main/java/com/ninni/twigs/registry/TwigsLootTables.java b/src/main/java/com/ninni/twigs/registry/TwigsLootTables.java index 2b450db0..d1838501 100644 --- a/src/main/java/com/ninni/twigs/registry/TwigsLootTables.java +++ b/src/main/java/com/ninni/twigs/registry/TwigsLootTables.java @@ -1,13 +1,15 @@ package com.ninni.twigs.registry; import com.ninni.twigs.Twigs; -import net.fabricmc.fabric.api.loot.v2.LootTableEvents; +import net.minecraft.core.registries.Registries; +import net.minecraft.resources.ResourceKey; import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.level.storage.loot.LootTable; public class TwigsLootTables { - public static final ResourceLocation BLOODSTONE_OBELISK_CHEST = create("chests/bloodstone_obelisk"); + public static final ResourceKey BLOODSTONE_OBELISK_CHEST = create("chests/bloodstone_obelisk"); - private static ResourceLocation create(String id) { - return new ResourceLocation(Twigs.MOD_ID, id); + private static ResourceKey create(String id) { + return ResourceKey.create(Registries.LOOT_TABLE, ResourceLocation.fromNamespaceAndPath(Twigs.MOD_ID, id)); } } diff --git a/src/main/java/com/ninni/twigs/registry/TwigsParticleTypes.java b/src/main/java/com/ninni/twigs/registry/TwigsParticleTypes.java index 8b4c8212..f58d7915 100644 --- a/src/main/java/com/ninni/twigs/registry/TwigsParticleTypes.java +++ b/src/main/java/com/ninni/twigs/registry/TwigsParticleTypes.java @@ -9,6 +9,6 @@ public class TwigsParticleTypes { - public static final SimpleParticleType ITEM_PEBBLE = Registry.register(BuiltInRegistries.PARTICLE_TYPE, new ResourceLocation(Twigs.MOD_ID, "item_pebble"), new TwigsParticleType(false)); + public static final SimpleParticleType ITEM_PEBBLE = Registry.register(BuiltInRegistries.PARTICLE_TYPE, ResourceLocation.fromNamespaceAndPath(Twigs.MOD_ID, "item_pebble"), new TwigsParticleType(false)); } diff --git a/src/main/java/com/ninni/twigs/registry/TwigsPlacedFeatures.java b/src/main/java/com/ninni/twigs/registry/TwigsPlacedFeatures.java index 2a4827ea..9982a4c8 100644 --- a/src/main/java/com/ninni/twigs/registry/TwigsPlacedFeatures.java +++ b/src/main/java/com/ninni/twigs/registry/TwigsPlacedFeatures.java @@ -1,23 +1,15 @@ package com.ninni.twigs.registry; import com.ninni.twigs.Twigs; -import com.ninni.twigs.data.TwigsConfiguredFeatureProvider; -import net.minecraft.core.Holder; import net.minecraft.core.registries.Registries; -import net.minecraft.data.worldgen.BootstapContext; +import net.minecraft.data.worldgen.BootstrapContext; import net.minecraft.data.worldgen.placement.PlacementUtils; import net.minecraft.data.worldgen.placement.VegetationPlacements; import net.minecraft.resources.ResourceKey; import net.minecraft.resources.ResourceLocation; import net.minecraft.world.level.levelgen.VerticalAnchor; import net.minecraft.world.level.levelgen.feature.ConfiguredFeature; -import net.minecraft.world.level.levelgen.placement.BiomeFilter; -import net.minecraft.world.level.levelgen.placement.CountPlacement; -import net.minecraft.world.level.levelgen.placement.HeightRangePlacement; -import net.minecraft.world.level.levelgen.placement.InSquarePlacement; -import net.minecraft.world.level.levelgen.placement.PlacedFeature; -import net.minecraft.world.level.levelgen.placement.PlacementModifier; -import net.minecraft.world.level.levelgen.placement.RarityFilter; +import net.minecraft.world.level.levelgen.placement.*; import java.util.List; @@ -34,7 +26,7 @@ public class TwigsPlacedFeatures { public static final ResourceKey PATCH_SEASHELL_LAND = createKey("patch_seashell_land"); public static final ResourceKey PATCH_SEASHELL_WATER = createKey("patch_seashell_water"); - public static void bootstrap(BootstapContext context) { + public static void bootstrap(BootstrapContext context) { register(context, ORE_RHYOLITE, TwigsConfiguredFeatures.ORE_RHYOLITE, commonOrePlacement(2, HeightRangePlacement.uniform(VerticalAnchor.bottom(), VerticalAnchor.absolute(16)))); register(context, ORE_BLOODSTONE, TwigsConfiguredFeatures.ORE_BLOODSTONE, commonOrePlacement(2, HeightRangePlacement.uniform(VerticalAnchor.absolute(5), VerticalAnchor.top()))); register(context, ORE_SCHIST_UPPER, TwigsConfiguredFeatures.ORE_SCHIST, rareOrePlacement(6, HeightRangePlacement.uniform(VerticalAnchor.absolute(64), VerticalAnchor.absolute(128)))); @@ -47,11 +39,11 @@ public static void bootstrap(BootstapContext context) { register(context, PATCH_SEASHELL_WATER, TwigsConfiguredFeatures.PATCH_SEASHELL, CountPlacement.of(2), InSquarePlacement.spread(), PlacementUtils.HEIGHTMAP_OCEAN_FLOOR, BiomeFilter.biome()); } - public static void register(BootstapContext context, ResourceKey resourceKey, ResourceKey> configuredFeature, PlacementModifier... placementModifiers) { + public static void register(BootstrapContext context, ResourceKey resourceKey, ResourceKey> configuredFeature, PlacementModifier... placementModifiers) { register(context, resourceKey, configuredFeature, List.of(placementModifiers)); } - public static void register(BootstapContext context, ResourceKey resourceKey, ResourceKey> configuredFeature, List placementModifiers) { + public static void register(BootstrapContext context, ResourceKey resourceKey, ResourceKey> configuredFeature, List placementModifiers) { context.register(resourceKey, new PlacedFeature(context.lookup(Registries.CONFIGURED_FEATURE).getOrThrow(configuredFeature), List.copyOf(placementModifiers))); } @@ -68,7 +60,7 @@ private static List rareOrePlacement(int i, PlacementModifier } public static ResourceKey createKey(String string) { - return ResourceKey.create(Registries.PLACED_FEATURE, new ResourceLocation(Twigs.MOD_ID, string)); + return ResourceKey.create(Registries.PLACED_FEATURE, ResourceLocation.fromNamespaceAndPath(Twigs.MOD_ID, string)); } } diff --git a/src/main/java/com/ninni/twigs/registry/TwigsSoundEvents.java b/src/main/java/com/ninni/twigs/registry/TwigsSoundEvents.java index 118adacc..41887fe5 100644 --- a/src/main/java/com/ninni/twigs/registry/TwigsSoundEvents.java +++ b/src/main/java/com/ninni/twigs/registry/TwigsSoundEvents.java @@ -43,7 +43,7 @@ private static SoundType register(String name, float volume, float pitch) { } private static SoundEvent register(String name) { - ResourceLocation id = new ResourceLocation(Twigs.MOD_ID, name); + ResourceLocation id = ResourceLocation.fromNamespaceAndPath(Twigs.MOD_ID, name); return Registry.register(BuiltInRegistries.SOUND_EVENT, id, SoundEvent.createVariableRangeEvent(id)); } } diff --git a/src/main/java/com/ninni/twigs/registry/TwigsStructurePieceTypes.java b/src/main/java/com/ninni/twigs/registry/TwigsStructurePieceTypes.java index 33fe5aaf..75304361 100644 --- a/src/main/java/com/ninni/twigs/registry/TwigsStructurePieceTypes.java +++ b/src/main/java/com/ninni/twigs/registry/TwigsStructurePieceTypes.java @@ -11,7 +11,7 @@ public class TwigsStructurePieceTypes { public static final StructurePieceType BLOODSTONE_OBELISK = register("bloodstone_obelisk", ObeliskGenerator.Piece::new); private static StructurePieceType register(String id, StructurePieceType type) { - return Registry.register(BuiltInRegistries.STRUCTURE_PIECE, new ResourceLocation(Twigs.MOD_ID, id), type); + return Registry.register(BuiltInRegistries.STRUCTURE_PIECE, ResourceLocation.fromNamespaceAndPath(Twigs.MOD_ID, id), type); } private static StructurePieceType register(String id, StructurePieceType.StructureTemplateType type) { diff --git a/src/main/java/com/ninni/twigs/registry/TwigsStructureTypes.java b/src/main/java/com/ninni/twigs/registry/TwigsStructureTypes.java index ad29ccde..d6cadc87 100644 --- a/src/main/java/com/ninni/twigs/registry/TwigsStructureTypes.java +++ b/src/main/java/com/ninni/twigs/registry/TwigsStructureTypes.java @@ -1,6 +1,6 @@ package com.ninni.twigs.registry; -import com.mojang.serialization.Codec; +import com.mojang.serialization.MapCodec; import com.ninni.twigs.Twigs; import com.ninni.twigs.world.gen.structures.ObeliskStructure; import net.minecraft.core.Registry; @@ -13,8 +13,8 @@ public class TwigsStructureTypes { public static final StructureType OBELISK = register("obelisk", ObeliskStructure.CODEC); - private static StructureType register(String string, Codec codec) { - return Registry.register(BuiltInRegistries.STRUCTURE_TYPE, new ResourceLocation(Twigs.MOD_ID, string), () -> codec); + private static StructureType register(String string, MapCodec codec) { + return Registry.register(BuiltInRegistries.STRUCTURE_TYPE, ResourceLocation.fromNamespaceAndPath(Twigs.MOD_ID, string), () -> codec); } } diff --git a/src/main/java/com/ninni/twigs/stat/TwigsStats.java b/src/main/java/com/ninni/twigs/stat/TwigsStats.java index 51ed0cf4..7e029266 100644 --- a/src/main/java/com/ninni/twigs/stat/TwigsStats.java +++ b/src/main/java/com/ninni/twigs/stat/TwigsStats.java @@ -4,6 +4,7 @@ import net.minecraft.core.registries.BuiltInRegistries; import net.minecraft.resources.ResourceLocation; import net.minecraft.stats.StatFormatter; + import static net.minecraft.stats.Stats.CUSTOM; public interface TwigsStats { @@ -12,7 +13,7 @@ public interface TwigsStats { private static ResourceLocation register(String id, StatFormatter formatter) { - ResourceLocation rl = new ResourceLocation(id); + ResourceLocation rl = ResourceLocation.parse(id); Registry.register(BuiltInRegistries.CUSTOM_STAT, id, rl); CUSTOM.get(rl, formatter); return rl; diff --git a/src/main/java/com/ninni/twigs/util/RecipeHelper.java b/src/main/java/com/ninni/twigs/util/RecipeHelper.java new file mode 100644 index 00000000..fa58be39 --- /dev/null +++ b/src/main/java/com/ninni/twigs/util/RecipeHelper.java @@ -0,0 +1,237 @@ +package com.ninni.twigs.util; + +import com.ninni.twigs.registry.TwigsBlocks; +import net.minecraft.data.recipes.*; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.item.crafting.Ingredient; +import net.minecraft.world.level.ItemLike; + +import static com.ninni.twigs.Twigs.MOD_ID; +import static com.ninni.twigs.data.TwigsDataGenerator.getId; +import static net.minecraft.data.recipes.RecipeCategory.BUILDING_BLOCKS; +import static net.minecraft.data.recipes.RecipeProvider.*; + +public interface RecipeHelper { + private static ResourceLocation id(String path) { + return ResourceLocation.fromNamespaceAndPath(MOD_ID, path); + } + + private static ResourceLocation smeltingName(ItemLike item, ItemLike from) { + return id("smelting/" + getItemName(item) + "_from_" + getItemName(from) + "_smelting"); + } + + private static ResourceLocation blastingName(ItemLike item, ItemLike from) { + return id("blasting/" + getItemName(item) + "_from_" + getItemName(from) + "_blasting"); + } + + private static ResourceLocation cuttingName(ItemLike item, ItemLike from) { + var string = getItemName(item) + "_from_" + getItemName(from); + return id("stonecutting/" + string); + } + + static void quickStonecuttingRecipe(RecipeOutput output, ItemLike result, ItemLike from, int amount) { + SingleItemRecipeBuilder.stonecutting(Ingredient.of(from), BUILDING_BLOCKS, result, amount) + .unlockedBy(getHasName(from), has(from)) + .save(output, cuttingName(result, from)); + } + + static void quickSmeltingRecipe(RecipeOutput output, ItemLike result, ItemLike from) { + SimpleCookingRecipeBuilder.smelting(Ingredient.of(from), BUILDING_BLOCKS, result, .1f, 200) + .unlockedBy(getHasName(from), has(from)) + .save(output, smeltingName(result, from)); + } + static void quickSmeltingRecipe(RecipeOutput output, ItemLike result, ItemLike from, float xp ) { + SimpleCookingRecipeBuilder.smelting(Ingredient.of(from), BUILDING_BLOCKS, result, xp, 200) + .unlockedBy(getHasName(from), has(from)) + .save(output, smeltingName(result, from)); + } + + // Semi-generic recipes + static void quick2x2Recipe(RecipeOutput output, ItemLike result, ItemLike input) { + ShapedRecipeBuilder.shaped(BUILDING_BLOCKS, result, 4) + .pattern("##") + .pattern("##") + .define('#', input) + .unlockedBy(getHasName(input), has(input)) + .save(output); + } + + static void quickSlabRecipe(RecipeOutput output, ItemLike slab, ItemLike input) { + ShapedRecipeBuilder.shaped(BUILDING_BLOCKS, slab, 6) + .pattern("###") + .define('#', input) + .unlockedBy(getHasName(input), has(input)) + .save(output); + quickStonecuttingRecipe(output, slab, input, 2); + } + + static void quickStairsRecipe(RecipeOutput output, ItemLike stair, ItemLike input) { + ShapedRecipeBuilder.shaped(BUILDING_BLOCKS, stair, 4) + .pattern("# ") + .pattern("## ") + .pattern("###") + .define('#', input) + .unlockedBy(getHasName(input), has(input)) + .save(output); + quickStonecuttingRecipe(output, stair, input, 1); + } + + static void quickWallRecipe(RecipeOutput output, ItemLike wall, ItemLike input) { + ShapedRecipeBuilder.shaped(BUILDING_BLOCKS, wall, 6) + .pattern("###") + .pattern("###") + .define('#', input) + .unlockedBy(getHasName(input), has(input)) + .save(output); + quickStonecuttingRecipe(output, wall, input, 1); + } + + static void quickSlabStairsWallStonecuttingRecipe(RecipeOutput output, ItemLike slab, ItemLike stair, ItemLike wall, ItemLike input) { + quickStonecuttingRecipe(output, slab, input, 2); + quickStonecuttingRecipe(output, stair, input, 1); + quickStonecuttingRecipe(output, wall, input, 1); + } + + static void quickSlabStairsRecipe(RecipeOutput output, ItemLike slab, ItemLike stair, ItemLike input) { + quickSlabRecipe(output, slab, input); + quickStairsRecipe(output, stair, input); + } + + static void quickSlabStairsWallRecipe(RecipeOutput output, ItemLike slab, ItemLike stair, ItemLike wall, ItemLike input) { + quickSlabStairsRecipe(output, slab, stair, input); + quickWallRecipe(output, wall, input); + } + + static void quickPolishedRecipes(RecipeOutput output, ItemLike polished, ItemLike polishedSlab, ItemLike polishedStair, ItemLike raw) { + quick2x2Recipe(output, polished, raw); + quickStonecuttingRecipe(output, polished, raw, 1); + + quickSlabStairsRecipe(output, polishedSlab, polishedStair, polished); + quickStonecuttingRecipe(output, polishedSlab, raw, 2); + quickStonecuttingRecipe(output, polishedStair, raw, 1); + } + + static void quickPolishedRecipes(RecipeOutput output, ItemLike polished, ItemLike polishedSlab, ItemLike polishedStair, ItemLike polishedWall, ItemLike raw) { + quick2x2Recipe(output, polished, raw); + quickStonecuttingRecipe(output, polished, raw, 1); + + quickSlabStairsWallRecipe(output, polishedSlab, polishedStair, polishedWall, polished); + quickStonecuttingRecipe(output, polishedSlab, raw, 2); + quickStonecuttingRecipe(output, polishedStair, raw, 1); + quickStonecuttingRecipe(output, polishedWall, raw, 1); + } + + static void quickPolishedBrickRecipes(RecipeOutput output, ItemLike bricks, ItemLike brickSlab, ItemLike brickStair, ItemLike brickWall, ItemLike polished, ItemLike raw) { + quick2x2Recipe(output, bricks, polished); + quickStonecuttingRecipe(output, bricks, polished, 1); + quickStonecuttingRecipe(output, bricks, raw, 1); + + quickSlabStairsWallRecipe(output, brickSlab, brickStair, brickWall, bricks); + quickStonecuttingRecipe(output, brickSlab, raw, 2); + quickStonecuttingRecipe(output, brickStair, raw, 1); + quickStonecuttingRecipe(output, brickWall, raw, 1); + + quickStonecuttingRecipe(output, brickSlab, polished, 2); + quickStonecuttingRecipe(output, brickStair, polished, 1); + quickStonecuttingRecipe(output, brickWall, polished, 1); + + } + + // Specific recipes + static void quickTableRecipe(RecipeOutput output, ItemLike result, ItemLike slab, ItemLike fence, ItemLike plank) { + ShapedRecipeBuilder.shaped(BUILDING_BLOCKS, result, 1) + .pattern("___") + .pattern("O O") + .pattern("O O") + .define('_', slab) + .define('O', fence) + .unlockedBy(getHasName(slab), has(slab)) + .unlockedBy(getHasName(fence), has(fence)) + .unlockedBy(getHasName(plank), has(plank)) + .save(output); + } + static void quickPaperLanternRecipe(RecipeOutput output, ItemLike result, ItemLike plant) { + ShapelessRecipeBuilder.shapeless(BUILDING_BLOCKS, result, 1) + .requires(TwigsBlocks.PAPER_LANTERN) + .requires(plant) + .unlockedBy(getHasName(TwigsBlocks.PAPER_LANTERN), has(TwigsBlocks.PAPER_LANTERN)) + .save(output); + } + + static void quickTrailRecipe(RecipeOutput output, ItemLike result, ItemLike input) { + ShapedRecipeBuilder.shaped(BUILDING_BLOCKS, result, 4) + .pattern(" #") + .pattern("# ") + .define('#', input) + .unlockedBy(getHasName(input), has(input)) + .unlockedBy(getHasName(result), has(result)) + .save(output); + } + + static void quickColumnRecipe(RecipeOutput output, ItemLike result, ItemLike input) { + ShapedRecipeBuilder.shaped(BUILDING_BLOCKS, result, 4) + .pattern("###") + .pattern(" # ") + .define('#', input) + .unlockedBy(getHasName(input), has(input)) + .unlockedBy(getHasName(result), has(result)) + .save(output); + quickStonecuttingRecipe(output, result, input, 1); + } + + static void quickCopperPillarRecipe(RecipeOutput output, ItemLike pillar, ItemLike cutSlab, ItemLike cutBlock, ItemLike block) { + ShapedRecipeBuilder.shaped(BUILDING_BLOCKS, pillar) + .pattern("#") + .pattern("#") + .define('#', cutSlab) + .unlockedBy(getHasName(cutSlab), has(cutSlab)) + .unlockedBy(getHasName(pillar), has(pillar)) + .save(output); + + quickStonecuttingRecipe(output, pillar, cutBlock, 1); + quickStonecuttingRecipe(output, pillar, block, 4); + } + + static void quickColoredSiltRecipes(RecipeOutput output, ItemLike dye, ItemLike coloredPacked, + ItemLike coloredShingles, ItemLike coloredShingleStairs, ItemLike coloredShingleSlab, ItemLike coloredShingleWall, + ItemLike pot + ) { + + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, coloredPacked, 8) + .pattern("###") + .pattern("#X#") + .pattern("###") + .define('#', TwigsBlocks.PACKED_SILT) + .define('X', dye) + .group("packed_silt") + .unlockedBy("has_packed_silt", has(TwigsBlocks.PACKED_SILT)) + .unlockedBy("has_dye", has(dye)) + .save(output, id(getId(coloredPacked.asItem()).getPath() + "_from_packed_silt")); + ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, coloredShingles, 8) + .pattern("###") + .pattern("#X#") + .pattern("###") + .define('#', TwigsBlocks.SILT_SHINGLES) + .define('X', dye) + .group("silt_shingles") + .unlockedBy("has_silt_shingles", has(TwigsBlocks.SILT_SHINGLES)) + .unlockedBy("has_dye", has(dye)) + .save(output,id(getId(coloredPacked.asItem()).getPath() + "_from_silt_shingles")); + + quickPolishedRecipes( + output, + coloredShingles, + coloredShingleSlab, + coloredShingleStairs, + coloredShingleWall, + coloredPacked + ); + + ShapelessRecipeBuilder.shapeless(RecipeCategory.BUILDING_BLOCKS, pot) + .requires(TwigsBlocks.SILT_POT) + .requires(dye) + .unlockedBy("has_silt_pot", has(TwigsBlocks.SILT_POT)) + .unlockedBy("has_dye", has(dye)) + .save(output); + } +} diff --git a/src/main/java/com/ninni/twigs/world/gen/structures/ObeliskGenerator.java b/src/main/java/com/ninni/twigs/world/gen/structures/ObeliskGenerator.java index 14344fd3..37eea681 100644 --- a/src/main/java/com/ninni/twigs/world/gen/structures/ObeliskGenerator.java +++ b/src/main/java/com/ninni/twigs/world/gen/structures/ObeliskGenerator.java @@ -30,12 +30,10 @@ import net.minecraft.world.level.levelgen.structure.templatesystem.StructurePlaceSettings; import net.minecraft.world.level.levelgen.structure.templatesystem.StructureTemplateManager; -import java.util.ArrayList; -import java.util.Iterator; import java.util.List; public class ObeliskGenerator { - private static final ResourceLocation OBELISK = new ResourceLocation(Twigs.MOD_ID, "bloodstone_obelisk/bloodstone_obelisk"); + private static final ResourceLocation OBELISK = ResourceLocation.fromNamespaceAndPath(Twigs.MOD_ID, "bloodstone_obelisk/bloodstone_obelisk"); public static void addPieces(StructureTemplateManager manager, BlockPos pos, Rotation rotation, StructurePiecesBuilder holder) { holder.addPiece(new ObeliskGenerator.Piece(manager, OBELISK, pos, rotation)); @@ -98,7 +96,7 @@ protected void handleDataMarker(String metadata, BlockPos pos, ServerLevelAccess if (mob != null) { mob.setPersistenceRequired(); mob.moveTo(pos, 0.0F, 0.0F); - mob.finalizeSpawn(world, world.getCurrentDifficultyAt(mob.blockPosition()), MobSpawnType.STRUCTURE, (SpawnGroupData) null, (CompoundTag) null); + mob.finalizeSpawn(world, world.getCurrentDifficultyAt(mob.blockPosition()), MobSpawnType.STRUCTURE, (SpawnGroupData) null); world.addFreshEntityWithPassengers(mob); world.setBlock(pos, Blocks.AIR.defaultBlockState(), 2); } diff --git a/src/main/java/com/ninni/twigs/world/gen/structures/ObeliskStructure.java b/src/main/java/com/ninni/twigs/world/gen/structures/ObeliskStructure.java index ee4ea34a..a5587d0e 100644 --- a/src/main/java/com/ninni/twigs/world/gen/structures/ObeliskStructure.java +++ b/src/main/java/com/ninni/twigs/world/gen/structures/ObeliskStructure.java @@ -1,6 +1,6 @@ package com.ninni.twigs.world.gen.structures; -import com.mojang.serialization.Codec; +import com.mojang.serialization.MapCodec; import com.ninni.twigs.registry.TwigsStructureTypes; import net.minecraft.core.BlockPos; import net.minecraft.world.level.ChunkPos; @@ -15,7 +15,7 @@ import java.util.Optional; public class ObeliskStructure extends Structure { - public static final Codec CODEC = ObeliskStructure.simpleCodec(ObeliskStructure::new); + public static final MapCodec CODEC = ObeliskStructure.simpleCodec(ObeliskStructure::new); public ObeliskStructure(StructureSettings structureSettings) { super(structureSettings); diff --git a/src/main/resources/assets/twigs/lang/en_us.json b/src/main/resources/assets/twigs/lang/en_us.json index 5fc52a9f..71133153 100644 --- a/src/main/resources/assets/twigs/lang/en_us.json +++ b/src/main/resources/assets/twigs/lang/en_us.json @@ -293,5 +293,14 @@ "block.twigs.brown_silt_shingle_wall": "Brown Silt Shingle Wall", "block.twigs.green_silt_shingle_wall": "Green Silt Shingle Wall", "block.twigs.red_silt_shingle_wall": "Red Silt Shingle Wall", - "block.twigs.black_silt_shingle_wall": "Black Silt Shingle Wall" + "block.twigs.black_silt_shingle_wall": "Black Silt Shingle Wall", + + "tag.item.twigs.schist": "Schist", + "tag.item.twigs.rhyolite": "Rhyolite", + "tag.item.twigs.bloodstone": "Bloodstone", + "tag.item.twigs.packed_silt": "Packed Silt", + "tag.item.twigs.packed_silt_full_blocks": "Packed Silt Full Blocks", + "tag.item.twigs.silt_pots": "Silt Pots", + "tag.item.twigs.seashells": "Seashells", + "tag.item.twigs.tables": "Tables" } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/enchantment_power_transmitter.json b/src/main/resources/data/minecraft/tags/blocks/enchantment_power_transmitter.json deleted file mode 100644 index 658c64e9..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/enchantment_power_transmitter.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:petrified_lichen" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/flower_pots.json b/src/main/resources/data/minecraft/tags/blocks/flower_pots.json deleted file mode 100644 index 96613d13..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/flower_pots.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:potted_azalea_flowers" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/piglin_repellents.json b/src/main/resources/data/minecraft/tags/blocks/piglin_repellents.json deleted file mode 100644 index 31964e67..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/piglin_repellents.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:soul_lamp" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/replaceable_plants.json b/src/main/resources/data/minecraft/tags/blocks/replaceable_plants.json deleted file mode 100644 index dcc81f25..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/replaceable_plants.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:azalea_flowers", - "twigs:petrified_lichen" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/slabs.json b/src/main/resources/data/minecraft/tags/blocks/slabs.json deleted file mode 100644 index 15619334..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/slabs.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:smooth_basalt_brick_slab", - "twigs:mossy_brick_slab", - "twigs:cobblestone_brick_slab", - "twigs:mossy_cobblestone_brick_slab", - "twigs:twisting_polished_blackstone_brick_slab", - "twigs:weeping_polished_blackstone_brick_slab", - "twigs:tuff_slab", - "twigs:polished_tuff_slab", - "twigs:polished_tuff_brick_slab", - "twigs:calcite_slab", - "twigs:polished_calcite_slab", - "twigs:polished_calcite_brick_slab", - "twigs:schist_slab", - "twigs:polished_schist_slab", - "twigs:polished_schist_brick_slab", - "twigs:rhyolite_slab", - "twigs:polished_rhyolite_slab", - "twigs:polished_rhyolite_brick_slab", - "twigs:bloodstone_slab", - "twigs:polished_bloodstone_slab", - "twigs:polished_bloodstone_brick_slab", - "twigs:gravel_brick_slab", - "twigs:silt_brick_slab", - "twigs:smooth_stone_brick_slab", - "twigs:silt_shingle_slab", - "twigs:white_silt_shingle_slab", - "twigs:orange_silt_shingle_slab", - "twigs:magenta_silt_shingle_slab", - "twigs:light_blue_silt_shingle_slab", - "twigs:yellow_silt_shingle_slab", - "twigs:lime_silt_shingle_slab", - "twigs:pink_silt_shingle_slab", - "twigs:gray_silt_shingle_slab", - "twigs:light_gray_silt_shingle_slab", - "twigs:cyan_silt_shingle_slab", - "twigs:purple_silt_shingle_slab", - "twigs:blue_silt_shingle_slab", - "twigs:brown_silt_shingle_slab", - "twigs:green_silt_shingle_slab", - "twigs:red_silt_shingle_slab", - "twigs:black_silt_shingle_slab" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/small_flowers.json b/src/main/resources/data/minecraft/tags/blocks/small_flowers.json deleted file mode 100644 index fc99ebb9..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/small_flowers.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:azalea_flowers" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/stairs.json b/src/main/resources/data/minecraft/tags/blocks/stairs.json deleted file mode 100644 index a87db2ab..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/stairs.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:smooth_basalt_brick_stairs", - "twigs:mossy_brick_stairs", - "twigs:cobblestone_brick_stairs", - "twigs:mossy_cobblestone_brick_stairs", - "twigs:twisting_polished_blackstone_brick_stairs", - "twigs:weeping_polished_blackstone_brick_stairs", - "twigs:tuff_stairs", - "twigs:polished_tuff_stairs", - "twigs:polished_tuff_brick_stairs", - "twigs:calcite_stairs", - "twigs:polished_calcite_stairs", - "twigs:polished_calcite_brick_stairs", - "twigs:schist_stairs", - "twigs:polished_schist_stairs", - "twigs:polished_schist_brick_stairs", - "twigs:rhyolite_stairs", - "twigs:polished_rhyolite_stairs", - "twigs:polished_rhyolite_brick_stairs", - "twigs:bloodstone_stairs", - "twigs:polished_bloodstone_stairs", - "twigs:polished_bloodstone_brick_stairs", - "twigs:gravel_brick_stairs", - "twigs:silt_brick_stairs", - "twigs:smooth_stone_brick_stairs", - "twigs:silt_shingle_stairs", - "twigs:white_silt_shingle_stairs", - "twigs:orange_silt_shingle_stairs", - "twigs:magenta_silt_shingle_stairs", - "twigs:light_blue_silt_shingle_stairs", - "twigs:yellow_silt_shingle_stairs", - "twigs:lime_silt_shingle_stairs", - "twigs:pink_silt_shingle_stairs", - "twigs:gray_silt_shingle_stairs", - "twigs:light_gray_silt_shingle_stairs", - "twigs:cyan_silt_shingle_stairs", - "twigs:purple_silt_shingle_stairs", - "twigs:blue_silt_shingle_stairs", - "twigs:brown_silt_shingle_stairs", - "twigs:green_silt_shingle_stairs", - "twigs:red_silt_shingle_stairs", - "twigs:black_silt_shingle_stairs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/walls.json b/src/main/resources/data/minecraft/tags/blocks/walls.json deleted file mode 100644 index c02cd1cc..00000000 --- a/src/main/resources/data/minecraft/tags/blocks/walls.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:smooth_basalt_brick_wall", - "twigs:mossy_brick_wall", - "twigs:cobblestone_brick_wall", - "twigs:mossy_cobblestone_brick_wall", - "twigs:weeping_polished_blackstone_brick_wall", - "twigs:twisting_polished_blackstone_brick_wall", - "twigs:tuff_wall", - "twigs:polished_tuff_brick_wall", - "twigs:calcite_wall", - "twigs:polished_calcite_brick_wall", - "twigs:schist_wall", - "twigs:polished_schist_brick_wall", - "twigs:rhyolite_wall", - "twigs:polished_rhyolite_brick_wall", - "twigs:bloodstone_wall", - "twigs:polished_bloodstone_brick_wall", - "twigs:gravel_brick_wall", - "twigs:silt_brick_wall", - "twigs:smooth_stone_brick_wall", - "twigs:silt_shingle_wall", - "twigs:white_silt_shingle_wall", - "twigs:orange_silt_shingle_wall", - "twigs:magenta_silt_shingle_wall", - "twigs:light_blue_silt_shingle_wall", - "twigs:yellow_silt_shingle_wall", - "twigs:lime_silt_shingle_wall", - "twigs:pink_silt_shingle_wall", - "twigs:gray_silt_shingle_wall", - "twigs:light_gray_silt_shingle_wall", - "twigs:cyan_silt_shingle_wall", - "twigs:purple_silt_shingle_wall", - "twigs:blue_silt_shingle_wall", - "twigs:brown_silt_shingle_wall", - "twigs:green_silt_shingle_wall", - "twigs:red_silt_shingle_wall", - "twigs:black_silt_shingle_wall" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/piglin_repellents.json b/src/main/resources/data/minecraft/tags/items/piglin_repellents.json deleted file mode 100644 index 31964e67..00000000 --- a/src/main/resources/data/minecraft/tags/items/piglin_repellents.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:soul_lamp" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/slabs.json b/src/main/resources/data/minecraft/tags/items/slabs.json deleted file mode 100644 index 9beaea4a..00000000 --- a/src/main/resources/data/minecraft/tags/items/slabs.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:smooth_basalt_brick_slab", - "twigs:mossy_brick_slab", - "twigs:twisting_polished_blackstone_brick_slab", - "twigs:weeping_polished_blackstone_brick_slab", - "twigs:schist_slab", - "twigs:polished_schist_slab", - "twigs:polished_schist_brick_slab", - "twigs:rhyolite_slab", - "twigs:polished_rhyolite_slab", - "twigs:polished_rhyolite_brick_slab", - "twigs:bloodstone_slab", - "twigs:polished_bloodstone_slab", - "twigs:polished_bloodstone_brick_slab", - "twigs:gravel_brick_slab", - "twigs:silt_brick_slab", - "twigs:smooth_stone_brick_slab", - "twigs:silt_shingle_slab", - "twigs:white_silt_shingle_slab", - "twigs:orange_silt_shingle_slab", - "twigs:magenta_silt_shingle_slab", - "twigs:light_blue_silt_shingle_slab", - "twigs:yellow_silt_shingle_slab", - "twigs:lime_silt_shingle_slab", - "twigs:pink_silt_shingle_slab", - "twigs:gray_silt_shingle_slab", - "twigs:light_gray_silt_shingle_slab", - "twigs:cyan_silt_shingle_slab", - "twigs:purple_silt_shingle_slab", - "twigs:blue_silt_shingle_slab", - "twigs:brown_silt_shingle_slab", - "twigs:green_silt_shingle_slab", - "twigs:red_silt_shingle_slab", - "twigs:black_silt_shingle_slab" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/small_flowers.json b/src/main/resources/data/minecraft/tags/items/small_flowers.json deleted file mode 100644 index fc99ebb9..00000000 --- a/src/main/resources/data/minecraft/tags/items/small_flowers.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:azalea_flowers" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/stairs.json b/src/main/resources/data/minecraft/tags/items/stairs.json deleted file mode 100644 index 7fbec4e6..00000000 --- a/src/main/resources/data/minecraft/tags/items/stairs.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:smooth_basalt_brick_stairs", - "twigs:mossy_brick_stairs", - "twigs:twisting_polished_blackstone_brick_stairs", - "twigs:weeping_polished_blackstone_brick_stairs", - "twigs:schist_stairs", - "twigs:polished_schist_stairs", - "twigs:polished_schist_brick_stairs", - "twigs:rhyolite_stairs", - "twigs:polished_rhyolite_stairs", - "twigs:polished_rhyolite_brick_stairs", - "twigs:bloodstone_stairs", - "twigs:polished_bloodstone_stairs", - "twigs:polished_bloodstone_brick_stairs", - "twigs:gravel_brick_stairs", - "twigs:silt_brick_stairs", - "twigs:smooth_stone_brick_stairs", - "twigs:silt_shingle_stairs", - "twigs:white_silt_shingle_stairs", - "twigs:orange_silt_shingle_stairs", - "twigs:magenta_silt_shingle_stairs", - "twigs:light_blue_silt_shingle_stairs", - "twigs:yellow_silt_shingle_stairs", - "twigs:lime_silt_shingle_stairs", - "twigs:pink_silt_shingle_stairs", - "twigs:gray_silt_shingle_stairs", - "twigs:light_gray_silt_shingle_stairs", - "twigs:cyan_silt_shingle_stairs", - "twigs:purple_silt_shingle_stairs", - "twigs:blue_silt_shingle_stairs", - "twigs:brown_silt_shingle_stairs", - "twigs:green_silt_shingle_stairs", - "twigs:red_silt_shingle_stairs", - "twigs:black_silt_shingle_stairs" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/walls.json b/src/main/resources/data/minecraft/tags/items/walls.json deleted file mode 100644 index f3173d5d..00000000 --- a/src/main/resources/data/minecraft/tags/items/walls.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:smooth_basalt_brick_wall", - "twigs:mossy_brick_wall", - "twigs:weeping_polished_blackstone_brick_wall", - "twigs:twisting_polished_blackstone_brick_wall", - "twigs:schist_wall", - "twigs:polished_schist_brick_wall", - "twigs:rhyolite_wall", - "twigs:polished_rhyolite_brick_wall", - "twigs:bloodstone_wall", - "twigs:polished_bloodstone_brick_wall", - "twigs:gravel_brick_wall", - "twigs:silt_brick_wall", - "twigs:smooth_stone_brick_wall", - "twigs:silt_shingle_wall", - "twigs:white_silt_shingle_wall", - "twigs:orange_silt_shingle_wall", - "twigs:magenta_silt_shingle_wall", - "twigs:light_blue_silt_shingle_wall", - "twigs:yellow_silt_shingle_wall", - "twigs:lime_silt_shingle_wall", - "twigs:pink_silt_shingle_wall", - "twigs:gray_silt_shingle_wall", - "twigs:light_gray_silt_shingle_wall", - "twigs:cyan_silt_shingle_wall", - "twigs:purple_silt_shingle_wall", - "twigs:blue_silt_shingle_wall", - "twigs:brown_silt_shingle_wall", - "twigs:green_silt_shingle_wall", - "twigs:red_silt_shingle_wall", - "twigs:black_silt_shingle_wall" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/amethyst_blocks/cut_amethyst.json b/src/main/resources/data/twigs/advancements/recipes/amethyst_blocks/cut_amethyst.json deleted file mode 100644 index 52f313bc..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/amethyst_blocks/cut_amethyst.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cut_amethyst" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_amethyst" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cut_amethyst" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/amethyst_blocks/cut_amethyst_from_amethyst_block_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/amethyst_blocks/cut_amethyst_from_amethyst_block_stonecutting.json deleted file mode 100644 index 9f0947c3..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/amethyst_blocks/cut_amethyst_from_amethyst_block_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cut_amethyst_from_amethyst_block_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:amethyst_block" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cut_amethyst_from_amethyst_block_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/amethyst_blocks/cut_amethyst_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/amethyst_blocks/cut_amethyst_stonecutting.json deleted file mode 100644 index 75eee747..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/amethyst_blocks/cut_amethyst_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cut_amethyst_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_amethyst" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cut_amethyst_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/amethyst_blocks/polished_amethyst.json b/src/main/resources/data/twigs/advancements/recipes/amethyst_blocks/polished_amethyst.json deleted file mode 100644 index 4c021c87..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/amethyst_blocks/polished_amethyst.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_amethyst" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:amethyst_block" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_amethyst" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/amethyst_blocks/polished_amethyst_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/amethyst_blocks/polished_amethyst_stonecutting.json deleted file mode 100644 index b062439b..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/amethyst_blocks/polished_amethyst_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_amethyst_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:amethyst_block" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_amethyst_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/azalea_flowers_from_flowering_azalea.json b/src/main/resources/data/twigs/advancements/recipes/azalea_flowers_from_flowering_azalea.json deleted file mode 100644 index 0e8ad0f7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/azalea_flowers_from_flowering_azalea.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:azalea_flowers_from_flowering_azalea" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:flowering_azalea" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:azalea_flowers_from_flowering_azalea" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/azalea_flowers_from_flowering_azalea_leaves.json b/src/main/resources/data/twigs/advancements/recipes/azalea_flowers_from_flowering_azalea_leaves.json deleted file mode 100644 index 88a04e78..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/azalea_flowers_from_flowering_azalea_leaves.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:azalea_flowers_from_flowering_azalea" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:flowering_azalea_leaves" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:azalea_flowers_from_flowering_azalea" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bamboo_mat.json b/src/main/resources/data/twigs/advancements/recipes/bamboo_mat.json deleted file mode 100644 index d205d904..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bamboo_mat.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:bamboo_mat" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:bamboo" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:bamboo_mat" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bamboo_thatch/bamboo_thatch.json b/src/main/resources/data/twigs/advancements/recipes/bamboo_thatch/bamboo_thatch.json deleted file mode 100644 index 09b86bd6..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bamboo_thatch/bamboo_thatch.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:bamboo_thatch" - ] - }, - "criteria": { - "has_bamboo_leaves": { - "conditions": { - "items": [ - { - "items": [ - "twigs:bamboo_leaves" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:bamboo_thatch" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_bamboo_leaves", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bamboo_thatch/bamboo_thatch_slab.json b/src/main/resources/data/twigs/advancements/recipes/bamboo_thatch/bamboo_thatch_slab.json deleted file mode 100644 index 0cec1c17..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bamboo_thatch/bamboo_thatch_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:bamboo_thatch_slab" - ] - }, - "criteria": { - "has_bamboo_thatch": { - "conditions": { - "items": [ - { - "items": [ - "twigs:bamboo_thatch" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:bamboo_thatch_slab" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_bamboo_thatch", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/chiseled_smooth_basalt_bricks.json b/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/chiseled_smooth_basalt_bricks.json deleted file mode 100644 index c9e731ae..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/chiseled_smooth_basalt_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:chiseled_smooth_basalt_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:smooth_basalt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:chiseled_smooth_basalt_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/chiseled_smooth_basalt_bricks_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/chiseled_smooth_basalt_bricks_stonecutting.json deleted file mode 100644 index 15d6136e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/chiseled_smooth_basalt_bricks_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:chiseled_smooth_basalt_bricks_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:smooth_basalt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:chiseled_smooth_basalt_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/polished_basalt_bricks.json b/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/polished_basalt_bricks.json deleted file mode 100644 index a4b7b89e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/polished_basalt_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_basalt_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:polished_basalt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_basalt_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/polished_basalt_bricks_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/polished_basalt_bricks_stonecutting.json deleted file mode 100644 index 148caaa9..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/polished_basalt_bricks_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_basalt_bricks_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:polished_basalt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_basalt_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_slab.json b/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_slab.json deleted file mode 100644 index 3c92520e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_basalt_brick_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:smooth_basalt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_basalt_brick_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_slab_from_smooth_basalt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_slab_from_smooth_basalt_stonecutting.json deleted file mode 100644 index 71767e32..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_slab_from_smooth_basalt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_basalt_brick_slab_from_smooth_basalt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:smooth_basalt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_basalt_brick_slab_from_smooth_basalt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_slab_stonecutting.json deleted file mode 100644 index f5be9e40..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_basalt_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:smooth_basalt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_basalt_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_stairs.json b/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_stairs.json deleted file mode 100644 index 79096616..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_basalt_brick_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:smooth_basalt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_basalt_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_stairs_from_smooth_basalt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_stairs_from_smooth_basalt_stonecutting.json deleted file mode 100644 index a3c89387..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_stairs_from_smooth_basalt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_basalt_brick_stairs_from_smooth_basalt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:smooth_basalt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_basalt_brick_stairs_from_smooth_basalt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_stairs_stonecutting.json deleted file mode 100644 index 8a28c32d..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_basalt_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:smooth_basalt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_basalt_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_wall.json b/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_wall.json deleted file mode 100644 index 33e4628f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_basalt_brick_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:smooth_basalt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_basalt_brick_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_wall_from_smooth_basalt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_wall_from_smooth_basalt_stonecutting.json deleted file mode 100644 index c64c7e9c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_wall_from_smooth_basalt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_basalt_brick_wall_from_smooth_basalt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:smooth_basalt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_basalt_brick_wall_from_smooth_basalt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_wall_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_wall_stonecutting.json deleted file mode 100644 index 9448ab29..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_brick_wall_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_basalt_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:smooth_basalt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_basalt_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_bricks.json b/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_bricks.json deleted file mode 100644 index 8633ca6e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_basalt_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:smooth_basalt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_basalt_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_bricks_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_bricks_stonecutting.json deleted file mode 100644 index ae860ddc..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/basalt_blocks/smooth_basalt_bricks_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_basalt_bricks_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:smooth_basalt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_basalt_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone.json deleted file mode 100644 index 89a3d4f5..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:bloodstone" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:quartz" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:bloodstone" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_slab.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_slab.json deleted file mode 100644 index 49df832e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:bloodstone_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:bloodstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:bloodstone_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_slab_stonecutting.json deleted file mode 100644 index 7425afa5..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:bloodstone_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:bloodstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:bloodstone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_stairs.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_stairs.json deleted file mode 100644 index a658ebd7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:bloodstone_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:bloodstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:bloodstone_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_stairs_stonecutting.json deleted file mode 100644 index 8d2745d2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:bloodstone_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:bloodstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:bloodstone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_wall.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_wall.json deleted file mode 100644 index 289cd5fd..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:bloodstone_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:bloodstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:bloodstone_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_wall_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_wall_stonecutting.json deleted file mode 100644 index 68af907f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/bloodstone_wall_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:bloodstone_wall_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:bloodstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:bloodstone_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/cracked_polished_bloodstone_bricks.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/cracked_polished_bloodstone_bricks.json deleted file mode 100644 index d4a62b30..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/cracked_polished_bloodstone_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cracked_polished_bloodstone_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_bloodstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cracked_polished_bloodstone_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone.json deleted file mode 100644 index 951f30d5..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_bloodstone" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:bloodstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_bloodstone" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_slab.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_slab.json deleted file mode 100644 index a328e243..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_bloodstone_brick_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_bloodstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_bloodstone_brick_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_slab_stonecutting.json deleted file mode 100644 index 5bb1041d..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_bloodstone_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_bloodstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_bloodstone_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_stairs.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_stairs.json deleted file mode 100644 index 0550c593..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_bloodstone_brick_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_bloodstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_bloodstone_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_stairs_stonecutting.json deleted file mode 100644 index ed6f76fc..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_bloodstone_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_bloodstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_bloodstone_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_wall.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_wall.json deleted file mode 100644 index 3af7b48f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_bloodstone_brick_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_bloodstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_bloodstone_brick_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_wall_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_wall_stonecutting.json deleted file mode 100644 index 64652ebe..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_brick_wall_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_bloodstone_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_bloodstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_bloodstone_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_bricks.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_bricks.json deleted file mode 100644 index 4dccf14f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_bloodstone_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_bloodstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_bloodstone_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_bricks_from_bloodstone_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_bricks_from_bloodstone_stonecutting.json deleted file mode 100644 index efbead1d..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_bricks_from_bloodstone_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_bloodstone_bricks_from_bloodstone_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:bloodstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_bloodstone_bricks_from_bloodstone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_bricks_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_bricks_stonecutting.json deleted file mode 100644 index 3477e46f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_bricks_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_bloodstone_bricks_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_bloodstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_bloodstone_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_slab.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_slab.json deleted file mode 100644 index ef9a9a60..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_bloodstone_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_bloodstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_bloodstone_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_slab_stonecutting.json deleted file mode 100644 index 64613e90..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_bloodstone_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_bloodstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_bloodstone_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_stairs.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_stairs.json deleted file mode 100644 index 522a927a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_bloodstone_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_bloodstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_bloodstone_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_stairs_stonecutting.json deleted file mode 100644 index 2d90bf32..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_bloodstone_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_bloodstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_bloodstone_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_stonecutting.json deleted file mode 100644 index ed4269ad..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bloodstone/polished_bloodstone_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_bloodstone_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:bloodstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_bloodstone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bone_meal_from_seashells.json b/src/main/resources/data/twigs/advancements/recipes/bone_meal_from_seashells.json deleted file mode 100644 index c0a47f55..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bone_meal_from_seashells.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:bone_meal_from_seashells" - ] - }, - "criteria": { - "has_item": { - "conditions": { - "items": [ - { - "tag": "twigs:seashells" - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:bone_meal_from_seashells" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bricks/brick_trail.json b/src/main/resources/data/twigs/advancements/recipes/bricks/brick_trail.json deleted file mode 100644 index 38a98bdb..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bricks/brick_trail.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:brick_trail" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:brick" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:brick_trail" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bricks/chiseled_bricks.json b/src/main/resources/data/twigs/advancements/recipes/bricks/chiseled_bricks.json deleted file mode 100644 index bf948747..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bricks/chiseled_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:chiseled_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:chiseled_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bricks/chiseled_bricks_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/bricks/chiseled_bricks_stonecutting.json deleted file mode 100644 index 6965f1fd..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bricks/chiseled_bricks_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:chiseled_bricks_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:chiseled_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bricks/cracked_bricks.json b/src/main/resources/data/twigs/advancements/recipes/bricks/cracked_bricks.json deleted file mode 100644 index 95d367c2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bricks/cracked_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cracked_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cracked_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bricks/mixed_bricks.json b/src/main/resources/data/twigs/advancements/recipes/bricks/mixed_bricks.json deleted file mode 100644 index de945bce..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bricks/mixed_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mixed_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mixed_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bricks/mixed_bricks_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/bricks/mixed_bricks_stonecutting.json deleted file mode 100644 index 06e6cf05..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bricks/mixed_bricks_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mixed_bricks_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mixed_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_slab.json b/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_slab.json deleted file mode 100644 index ce09414e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_brick_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:mossy_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_brick_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_slab_stonecutting.json deleted file mode 100644 index a59332f1..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:mossy_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_stairs.json b/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_stairs.json deleted file mode 100644 index 97ab54f6..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_brick_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:mossy_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_stairs_stonecutting.json deleted file mode 100644 index 44081729..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:mossy_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_wall.json b/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_wall.json deleted file mode 100644 index d447c04a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_brick_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:mossy_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_brick_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_wall_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_wall_stonecutting.json deleted file mode 100644 index 0092274e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_brick_wall_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:mossy_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_bricks_from_moss_block.json b/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_bricks_from_moss_block.json deleted file mode 100644 index 7ccac409..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_bricks_from_moss_block.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_bricks_from_moss_block" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:moss_block" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_bricks_from_moss_block" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_bricks_from_vine.json b/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_bricks_from_vine.json deleted file mode 100644 index f7e977b4..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/bricks/mossy_bricks_from_vine.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_bricks_from_vine" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:vine" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_bricks_from_vine" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_slab.json b/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_slab.json deleted file mode 100644 index d025c1b7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:calcite_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:calcite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:calcite_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_slab_stonecutting.json deleted file mode 100644 index 5b256b5a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:calcite_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:calcite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:calcite_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_stairs.json b/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_stairs.json deleted file mode 100644 index b50ef922..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:calcite_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:calcite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:calcite_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_stairs_stonecutting.json deleted file mode 100644 index 1e2bf5e8..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:calcite_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:calcite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:calcite_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_wall.json b/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_wall.json deleted file mode 100644 index 10179e77..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:calcite_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:calcite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:calcite_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_wall_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_wall_stonecutting.json deleted file mode 100644 index e30be6f5..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/calcite_wall_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:calcite_wall_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:calcite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:calcite_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/cracked_polished_calcite_bricks.json b/src/main/resources/data/twigs/advancements/recipes/calcite/cracked_polished_calcite_bricks.json deleted file mode 100644 index e1eae434..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/cracked_polished_calcite_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cracked_polished_calcite_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_calcite_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cracked_polished_calcite_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite.json b/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite.json deleted file mode 100644 index afe07f1e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_calcite" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:calcite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_calcite" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_slab.json b/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_slab.json deleted file mode 100644 index a339c217..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_calcite_brick_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_calcite_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_calcite_brick_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_slab_stonecutting.json deleted file mode 100644 index 9049835c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_calcite_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_calcite_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_calcite_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_stairs.json b/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_stairs.json deleted file mode 100644 index d78baa6d..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_calcite_brick_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_calcite_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_calcite_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_stairs_stonecutting.json deleted file mode 100644 index 98c6b706..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_calcite_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_calcite_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_calcite_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_wall.json b/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_wall.json deleted file mode 100644 index 466dcc86..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_calcite_brick_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_calcite_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_calcite_brick_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_wall_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_wall_stonecutting.json deleted file mode 100644 index 86eb3eb2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_brick_wall_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_calcite_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_calcite_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_calcite_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_bricks.json b/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_bricks.json deleted file mode 100644 index 3e982437..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_calcite_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_calcite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_calcite_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_bricks_from_calcite_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_bricks_from_calcite_stonecutting.json deleted file mode 100644 index d87ff312..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_bricks_from_calcite_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_calcite_bricks_from_calcite_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:calcite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_calcite_bricks_from_calcite_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_bricks_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_bricks_stonecutting.json deleted file mode 100644 index ccb22558..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_bricks_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_calcite_bricks_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_calcite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_calcite_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_slab.json b/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_slab.json deleted file mode 100644 index e5f79e44..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_calcite_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_calcite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_calcite_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_slab_stonecutting.json deleted file mode 100644 index db158756..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_calcite_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_calcite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_calcite_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_stairs.json b/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_stairs.json deleted file mode 100644 index 27b13455..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_calcite_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_calcite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_calcite_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_stairs_stonecutting.json deleted file mode 100644 index 9d933f56..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_calcite_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_calcite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_calcite_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_stonecutting.json deleted file mode 100644 index 6f98fe2e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/calcite/polished_calcite_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_calcite_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:calcite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_calcite_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_slab.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_slab.json deleted file mode 100644 index ddbea82b..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cobblestone_brick_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cobblestone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cobblestone_brick_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_slab_from_cobblestone_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_slab_from_cobblestone_stonecutting.json deleted file mode 100644 index 0b0d5239..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_slab_from_cobblestone_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cobblestone_brick_slab_from_cobblestone_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:cobblestone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cobblestone_brick_slab_from_cobblestone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_slab_stonecutting.json deleted file mode 100644 index 348dfc78..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cobblestone_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cobblestone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cobblestone_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_stairs.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_stairs.json deleted file mode 100644 index 17f15be2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cobblestone_brick_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cobblestone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cobblestone_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_stairs_from_cobblestone_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_stairs_from_cobblestone_stonecutting.json deleted file mode 100644 index 4e1d6c75..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_stairs_from_cobblestone_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cobblestone_brick_stairs_from_cobblestone_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:cobblestone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cobblestone_brick_stairs_from_cobblestone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_stairs_stonecutting.json deleted file mode 100644 index fb6d8cf5..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cobblestone_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cobblestone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cobblestone_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_wall.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_wall.json deleted file mode 100644 index 2c35a170..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cobblestone_brick_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cobblestone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cobblestone_brick_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_wall_from_cobblestone_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_wall_from_cobblestone_stonecutting.json deleted file mode 100644 index 1f5830b8..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_wall_from_cobblestone_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cobblestone_brick_wall_from_cobblestone_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:cobblestone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cobblestone_brick_wall_from_cobblestone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_wall_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_wall_stonecutting.json deleted file mode 100644 index df746bbf..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_brick_wall_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cobblestone_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cobblestone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cobblestone_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_bricks.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_bricks.json deleted file mode 100644 index 759d58d5..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cobblestone_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:cobblestone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cobblestone_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_bricks_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_bricks_stonecutting.json deleted file mode 100644 index de760e1c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cobblestone_bricks_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cobblestone_bricks_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:cobblestone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cobblestone_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cracked_cobblestone_bricks.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cracked_cobblestone_bricks.json deleted file mode 100644 index d9808119..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/cracked_cobblestone_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cracked_cobblestone_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cobblestone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cracked_cobblestone_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_slab.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_slab.json deleted file mode 100644 index fc403339..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_cobblestone_brick_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:mossy_cobblestone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_cobblestone_brick_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_slab_from_mossy_cobblestone_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_slab_from_mossy_cobblestone_stonecutting.json deleted file mode 100644 index 73b7260a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_slab_from_mossy_cobblestone_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_cobblestone_brick_slab_from_mossy_cobblestone_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:mossy_cobblestone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_cobblestone_brick_slab_from_mossy_cobblestone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_slab_stonecutting.json deleted file mode 100644 index 63351126..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_cobblestone_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:mossy_cobblestone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_cobblestone_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_stairs.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_stairs.json deleted file mode 100644 index 67ef3d81..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_cobblestone_brick_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:mossy_cobblestone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_cobblestone_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_stairs_from_mossy_cobblestone_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_stairs_from_mossy_cobblestone_stonecutting.json deleted file mode 100644 index 93f62850..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_stairs_from_mossy_cobblestone_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cobblestone_brick_stairs_from_mossy_cobblestone_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:mossy_cobblestone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cobblestone_brick_stairs_from_mossy_cobblestone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_stairs_stonecutting.json deleted file mode 100644 index 427ef296..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_cobblestone_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:mossy_cobblestone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_cobblestone_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_wall.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_wall.json deleted file mode 100644 index 80a178d5..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_cobblestone_brick_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:mossy_cobblestone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_cobblestone_brick_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_wall_from_mossy_cobblestone_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_wall_from_mossy_cobblestone_stonecutting.json deleted file mode 100644 index 5c9e953b..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_wall_from_mossy_cobblestone_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cobblestone_brick_wall_from_mossy_cobblestone_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:mossy_cobblestone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cobblestone_brick_wall_from_mossy_cobblestone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_wall_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_wall_stonecutting.json deleted file mode 100644 index 28a7d1a2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_brick_wall_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_cobblestone_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:mossy_cobblestone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_cobblestone_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_bricks_cobblestone.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_bricks_cobblestone.json deleted file mode 100644 index e4246330..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_bricks_cobblestone.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_cobblestone_bricks_cobblestone" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:mossy_cobblestone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_cobblestone_bricks_cobblestone" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_bricks_from_moss.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_bricks_from_moss.json deleted file mode 100644 index 57f94d18..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_bricks_from_moss.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_cobblestone_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:moss_block" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_cobblestone_bricks_from_moss" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_bricks_from_mossy_cobblestone.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_bricks_from_mossy_cobblestone.json deleted file mode 100644 index 6763bb26..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_bricks_from_mossy_cobblestone.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_cobblestone_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:mossy_cobblestone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_cobblestone_bricks_from_mossy_cobblestone" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_bricks_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_bricks_stonecutting.json deleted file mode 100644 index 660d83e6..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_bricks/mossy_cobblestone_bricks_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mossy_cobblestone_bricks_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:mossy_cobblestone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mossy_cobblestone_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/cobblestone_from_pebble.json b/src/main/resources/data/twigs/advancements/recipes/cobblestone_from_pebble.json deleted file mode 100644 index 51e4d0c4..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/cobblestone_from_pebble.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cobblestone_from_pebble" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:pebble" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cobblestone_from_pebble" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/columns/blackstone_column.json b/src/main/resources/data/twigs/advancements/recipes/columns/blackstone_column.json deleted file mode 100644 index bc2802c7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/columns/blackstone_column.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blackstone_column" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:blackstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blackstone_column" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/columns/blackstone_column_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/columns/blackstone_column_stonecutting.json deleted file mode 100644 index 6e313a76..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/columns/blackstone_column_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blackstone_column_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:blackstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blackstone_column_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/columns/deepslate_column.json b/src/main/resources/data/twigs/advancements/recipes/columns/deepslate_column.json deleted file mode 100644 index 9765b882..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/columns/deepslate_column.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:deepslate_column" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:deepslate" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:deepslate_column" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/columns/deepslate_column_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/columns/deepslate_column_stonecutting.json deleted file mode 100644 index 812872e4..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/columns/deepslate_column_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:deepslate_column_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:deepslate" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:deepslate_column_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/columns/quartz_column.json b/src/main/resources/data/twigs/advancements/recipes/columns/quartz_column.json deleted file mode 100644 index f07a18bf..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/columns/quartz_column.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:quartz_column" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:quartz_block" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:quartz_column" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/columns/quartz_column_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/columns/quartz_column_stonecutting.json deleted file mode 100644 index 4190eea1..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/columns/quartz_column_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:quartz_column_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:quartz_block" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:quartz_column_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/columns/stone_column.json b/src/main/resources/data/twigs/advancements/recipes/columns/stone_column.json deleted file mode 100644 index be77c0d1..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/columns/stone_column.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:stone_column" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:stone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:stone_column" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/columns/stone_column_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/columns/stone_column_stonecutting.json deleted file mode 100644 index 6a4c0f40..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/columns/stone_column_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:stone_column_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:stone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:stone_column_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/compacted_dripstone.json b/src/main/resources/data/twigs/advancements/recipes/compacted_dripstone.json deleted file mode 100644 index fc3be1c6..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/compacted_dripstone.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:compacted_dripstone" - ] - }, - "criteria": { - "has_pointed_dripstone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:pointed_dripstone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:compacted_dripstone" - } - } - }, - "requirements": [ - [ - "has_pointed_dripstone", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/copper_pillar.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/copper_pillar.json deleted file mode 100644 index 272ef8b8..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/copper_pillar.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:cut_copper_slab" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:copper_pillar" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:copper_pillar" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/copper_pillar_from_cut_copper_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/copper_pillar_from_cut_copper_stonecutting.json deleted file mode 100644 index 3c1ae65c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/copper_pillar_from_cut_copper_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:cut_copper" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:copper_pillar_from_cut_copper_stonecutting" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:copper_pillar_from_cut_copper_stonecutting" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/copper_pillar_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/copper_pillar_stonecutting.json deleted file mode 100644 index 30f39924..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/copper_pillar_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:copper_block" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:copper_pillar_stonecutting" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:copper_pillar_stonecutting" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/exposed_copper_pillar.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/exposed_copper_pillar.json deleted file mode 100644 index fdc06831..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/exposed_copper_pillar.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_exposed_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:exposed_cut_copper_slab" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:exposed_copper_pillar" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_exposed_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:exposed_copper_pillar" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/exposed_copper_pillar_from_cut_copper_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/exposed_copper_pillar_from_cut_copper_stonecutting.json deleted file mode 100644 index c80d5add..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/exposed_copper_pillar_from_cut_copper_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:exposed_cut_copper" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:exposed_copper_pillar_from_cut_copper_stonecutting" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:exposed_copper_pillar_from_cut_copper_stonecutting" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/exposed_copper_pillar_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/exposed_copper_pillar_stonecutting.json deleted file mode 100644 index f5826357..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/exposed_copper_pillar_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:exposed_copper" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:exposed_copper_pillar_stonecutting" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:exposed_copper_pillar_stonecutting" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/oxidized_copper_pillar.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/oxidized_copper_pillar.json deleted file mode 100644 index 8626044e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/oxidized_copper_pillar.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_oxidized_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:oxidized_cut_copper_slab" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:oxidized_copper_pillar" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_oxidized_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:oxidized_copper_pillar" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/oxidized_copper_pillar_from_cut_copper_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/oxidized_copper_pillar_from_cut_copper_stonecutting.json deleted file mode 100644 index 9eabc776..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/oxidized_copper_pillar_from_cut_copper_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:oxidized_cut_copper" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:oxidized_copper_pillar_from_cut_copper_stonecutting" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:oxidized_copper_pillar_from_cut_copper_stonecutting" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/oxidized_copper_pillar_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/oxidized_copper_pillar_stonecutting.json deleted file mode 100644 index fd0e9108..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/oxidized_copper_pillar_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:oxidized_copper" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:oxidized_copper_pillar_stonecutting" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:oxidized_copper_pillar_stonecutting" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_copper_pillar.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_copper_pillar.json deleted file mode 100644 index 096934f2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_copper_pillar.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_the_recipe": { - "conditions": { - "recipe": "twigs:waxed_copper_pillar" - }, - "trigger": "minecraft:recipe_unlocked" - }, - "has_waxed_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:waxed_cut_copper_slab" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - } - }, - "requirements": [ - [ - "has_waxed_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:waxed_copper_pillar" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_copper_pillar_from_cut_copper_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_copper_pillar_from_cut_copper_stonecutting.json deleted file mode 100644 index 7a882378..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_copper_pillar_from_cut_copper_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:waxed_cut_copper" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:waxed_copper_pillar_from_cut_copper_stonecutting" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:waxed_copper_pillar_from_cut_copper_stonecutting" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_copper_pillar_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_copper_pillar_stonecutting.json deleted file mode 100644 index b0c36d92..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_copper_pillar_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:waxed_copper_block" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:waxed_copper_pillar_stonecutting" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:waxed_copper_pillar_stonecutting" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_exposed_copper_pillar.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_exposed_copper_pillar.json deleted file mode 100644 index 2c290081..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_exposed_copper_pillar.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_the_recipe": { - "conditions": { - "recipe": "twigs:waxed_exposed_copper_pillar" - }, - "trigger": "minecraft:recipe_unlocked" - }, - "has_waxed_exposed_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:waxed_exposed_cut_copper_slab" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - } - }, - "requirements": [ - [ - "has_waxed_exposed_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:waxed_exposed_copper_pillar" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_exposed_copper_pillar_from_cut_copper_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_exposed_copper_pillar_from_cut_copper_stonecutting.json deleted file mode 100644 index 97fa0ec1..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_exposed_copper_pillar_from_cut_copper_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:waxed_exposed_cut_copper" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:waxed_exposed_copper_pillar_from_cut_copper_stonecutting" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:waxed_exposed_copper_pillar_from_cut_copper_stonecutting" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_exposed_copper_pillar_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_exposed_copper_pillar_stonecutting.json deleted file mode 100644 index 72c76ee7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_exposed_copper_pillar_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:waxed_exposed_copper" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:waxed_exposed_copper_pillar_stonecutting" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:waxed_exposed_copper_pillar_stonecutting" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_oxidized_copper_pillar.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_oxidized_copper_pillar.json deleted file mode 100644 index 99ab08fd..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_oxidized_copper_pillar.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_the_recipe": { - "conditions": { - "recipe": "twigs:waxed_oxidized_copper_pillar" - }, - "trigger": "minecraft:recipe_unlocked" - }, - "has_waxed_oxidized_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:waxed_oxidized_cut_copper_slab" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - } - }, - "requirements": [ - [ - "has_waxed_oxidized_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:waxed_oxidized_copper_pillar" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_oxidized_copper_pillar_from_cut_copper_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_oxidized_copper_pillar_from_cut_copper_stonecutting.json deleted file mode 100644 index 111ab58e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_oxidized_copper_pillar_from_cut_copper_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:waxed_oxidized_cut_copper" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:waxed_oxidized_copper_pillar_from_cut_copper_stonecutting" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:waxed_oxidized_copper_pillar_from_cut_copper_stonecutting" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_oxidized_copper_pillar_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_oxidized_copper_pillar_stonecutting.json deleted file mode 100644 index 308c5bee..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_oxidized_copper_pillar_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:waxed_oxidized_copper" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:waxed_oxidized_copper_pillar_stonecutting" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:waxed_oxidized_copper_pillar_stonecutting" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_weathered_copper_pillar.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_weathered_copper_pillar.json deleted file mode 100644 index a45e39bc..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_weathered_copper_pillar.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_the_recipe": { - "conditions": { - "recipe": "twigs:waxed_weathered_copper_pillar" - }, - "trigger": "minecraft:recipe_unlocked" - }, - "has_waxed_weathered_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:waxed_weathered_cut_copper_slab" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - } - }, - "requirements": [ - [ - "has_waxed_weathered_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:waxed_weathered_copper_pillar" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_weathered_copper_pillar_from_cut_copper_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_weathered_copper_pillar_from_cut_copper_stonecutting.json deleted file mode 100644 index 31ae330c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_weathered_copper_pillar_from_cut_copper_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:waxed_weathered_cut_copper" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:waxed_weathered_copper_pillar_from_cut_copper_stonecutting" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:waxed_weathered_copper_pillar_from_cut_copper_stonecutting" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_weathered_copper_pillar_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_weathered_copper_pillar_stonecutting.json deleted file mode 100644 index ed7bcf86..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/waxed_weathered_copper_pillar_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:waxed_weathered_copper" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:waxed_weathered_copper_pillar_stonecutting" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:waxed_weathered_copper_pillar_stonecutting" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/weathered_copper_pillar.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/weathered_copper_pillar.json deleted file mode 100644 index dd182825..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/weathered_copper_pillar.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_weathered_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:weathered_cut_copper_slab" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:weathered_copper_pillar" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_weathered_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:weathered_copper_pillar" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/weathered_copper_pillar_from_cut_copper_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/weathered_copper_pillar_from_cut_copper_stonecutting.json deleted file mode 100644 index b1df5b46..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/weathered_copper_pillar_from_cut_copper_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:weathered_cut_copper" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:weathered_copper_pillar_from_cut_copper_stonecutting" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:weathered_copper_pillar_from_cut_copper_stonecutting" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/weathered_copper_pillar_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/copper_pillar/weathered_copper_pillar_stonecutting.json deleted file mode 100644 index 330d9ce2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/copper_pillar/weathered_copper_pillar_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "has_cut_copper_slab": { - "conditions": { - "items": [ - { - "items": [ - "minecraft:weathered_copper" - ] - } - ] - }, - "trigger": "minecraft:inventory_changed" - }, - "has_the_recipe": { - "conditions": { - "recipe": "twigs:weathered_copper_pillar_stonecutting" - }, - "trigger": "minecraft:recipe_unlocked" - } - }, - "requirements": [ - [ - "has_cut_copper_slab", - "has_the_recipe" - ] - ], - "rewards": { - "recipes": [ - "twigs:weathered_copper_pillar_stonecutting" - ] - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_slab.json b/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_slab.json deleted file mode 100644 index ae47993d..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:twisting_polished_blackstone_brick_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:twisting_polished_blackstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:twisting_polished_blackstone_brick_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_slab_stonecutting.json deleted file mode 100644 index ec47f79c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:twisting_polished_blackstone_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:twisting_polished_blackstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:twisting_polished_blackstone_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_stairs.json b/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_stairs.json deleted file mode 100644 index e92df928..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:twisting_polished_blackstone_brick_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:twisting_polished_blackstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:twisting_polished_blackstone_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_stairs_stonecutting.json deleted file mode 100644 index f156ba47..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:twisting_polished_blackstone_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:twisting_polished_blackstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:twisting_polished_blackstone_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_wall.json b/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_wall.json deleted file mode 100644 index cfb13990..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:twisting_polished_blackstone_brick_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:twisting_polished_blackstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:twisting_polished_blackstone_brick_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_wall_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_wall_stonecutting.json deleted file mode 100644 index 66d238a5..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_brick_wall_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:twisting_polished_blackstone_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:twisting_polished_blackstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:twisting_polished_blackstone_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_bricks.json b/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_bricks.json deleted file mode 100644 index 472c063e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/twisting_polished_blackstone_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:twisting_polished_blackstone_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:twisting_vines" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:twisting_polished_blackstone_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_slab.json b/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_slab.json deleted file mode 100644 index 96b7605f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:weeping_polished_blackstone_brick_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:weeping_polished_blackstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:weeping_polished_blackstone_brick_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_slab_stonecutting.json deleted file mode 100644 index c05bdbbd..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:weeping_polished_blackstone_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:weeping_polished_blackstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:weeping_polished_blackstone_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_stairs.json b/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_stairs.json deleted file mode 100644 index 14c6dadd..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:weeping_polished_blackstone_brick_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:weeping_polished_blackstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:weeping_polished_blackstone_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_stairs_stonecutting.json deleted file mode 100644 index 302422c6..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:weeping_polished_blackstone_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:weeping_polished_blackstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:weeping_polished_blackstone_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_wall.json b/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_wall.json deleted file mode 100644 index d9a7cb60..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:weeping_polished_blackstone_brick_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:weeping_polished_blackstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:weeping_polished_blackstone_brick_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_wall_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_wall_stonecutting.json deleted file mode 100644 index 0b0d1b3d..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_brick_wall_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:weeping_polished_blackstone_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:weeping_polished_blackstone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:weeping_polished_blackstone_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_bricks.json b/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_bricks.json deleted file mode 100644 index 3c7716e9..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/decorated_blackstone_bricks/weeping_polished_blackstone_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:weeping_polished_blackstone_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:weeping_vines" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:weeping_polished_blackstone_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/gravel_bricks/gravel_brick_slab.json b/src/main/resources/data/twigs/advancements/recipes/gravel_bricks/gravel_brick_slab.json deleted file mode 100644 index 7b0ef318..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/gravel_bricks/gravel_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gravel_brick_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:gravel_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gravel_brick_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/gravel_bricks/gravel_brick_stairs.json b/src/main/resources/data/twigs/advancements/recipes/gravel_bricks/gravel_brick_stairs.json deleted file mode 100644 index 255a3147..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/gravel_bricks/gravel_brick_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gravel_brick_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:gravel_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gravel_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/gravel_bricks/gravel_brick_wall.json b/src/main/resources/data/twigs/advancements/recipes/gravel_bricks/gravel_brick_wall.json deleted file mode 100644 index 73954a16..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/gravel_bricks/gravel_brick_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gravel_brick_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:gravel_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gravel_brick_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/gravel_bricks/gravel_bricks.json b/src/main/resources/data/twigs/advancements/recipes/gravel_bricks/gravel_bricks.json deleted file mode 100644 index cb06cdad..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/gravel_bricks/gravel_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gravel_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:gravel" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gravel_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/lamps/crimson_shroomlamp.json b/src/main/resources/data/twigs/advancements/recipes/lamps/crimson_shroomlamp.json deleted file mode 100644 index 99d0a166..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/lamps/crimson_shroomlamp.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:crimson_shroomlamp" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:shroomlight" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:crimson_shroomlamp" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/lamps/lamp.json b/src/main/resources/data/twigs/advancements/recipes/lamps/lamp.json deleted file mode 100644 index 90228166..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/lamps/lamp.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:lamp" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:torch" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:lamp" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/lamps/soul_lamp.json b/src/main/resources/data/twigs/advancements/recipes/lamps/soul_lamp.json deleted file mode 100644 index aac402aa..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/lamps/soul_lamp.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:soul_lamp" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:soul_torch" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:soul_lamp" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/lamps/warped_shroomlamp.json b/src/main/resources/data/twigs/advancements/recipes/lamps/warped_shroomlamp.json deleted file mode 100644 index 883a96a7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/lamps/warped_shroomlamp.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:warped_shroomlamp" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:shroomlight" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:warped_shroomlamp" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/allium_paper_lantern.json b/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/allium_paper_lantern.json deleted file mode 100644 index c0bc30c9..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/allium_paper_lantern.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:allium_paper_lantern" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:allium" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:allium_paper_lantern" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/blue_orchid_paper_lantern.json b/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/blue_orchid_paper_lantern.json deleted file mode 100644 index e0036dd4..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/blue_orchid_paper_lantern.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blue_orchid_paper_lantern" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:blue_orchid" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blue_orchid_paper_lantern" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/crimson_roots_paper_lantern.json b/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/crimson_roots_paper_lantern.json deleted file mode 100644 index aa043414..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/crimson_roots_paper_lantern.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:crimson_roots_paper_lantern" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:crimson_roots" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:crimson_roots_paper_lantern" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/dandelion_paper_lantern.json b/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/dandelion_paper_lantern.json deleted file mode 100644 index c1ab4a9d..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/dandelion_paper_lantern.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:dandelion_paper_lantern" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:dandelion" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:dandelion_paper_lantern" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/paper_lantern.json b/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/paper_lantern.json deleted file mode 100644 index 4ea7d228..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/paper_lantern.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:paper_lantern" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:paper" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:paper_lantern" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/torchflower_paper_lantern.json b/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/torchflower_paper_lantern.json deleted file mode 100644 index 726d0996..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/paper_lanterns/torchflower_paper_lantern.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:torchflower_paper_lantern" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:torchflower" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:torchflower_paper_lantern" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/cracked_polished_rhyolite_bricks.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/cracked_polished_rhyolite_bricks.json deleted file mode 100644 index 6424a991..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/cracked_polished_rhyolite_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cracked_polished_rhyolite_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_rhyolite_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cracked_polished_rhyolite_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite.json deleted file mode 100644 index 9ba7fc89..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_rhyolite" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:rhyolite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_rhyolite" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_slab.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_slab.json deleted file mode 100644 index ca0434ea..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_rhyolite_brick_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_rhyolite_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_rhyolite_brick_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_slab_stonecutting.json deleted file mode 100644 index a8aedb41..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_rhyolite_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_rhyolite_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_rhyolite_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_stairs.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_stairs.json deleted file mode 100644 index 3c17b7d0..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_rhyolite_brick_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_rhyolite_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_rhyolite_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_stairs_stonecutting.json deleted file mode 100644 index 21dc733d..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_rhyolite_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_rhyolite_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_rhyolite_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_wall.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_wall.json deleted file mode 100644 index 0a875b76..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_rhyolite_brick_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_rhyolite_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_rhyolite_brick_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_wall_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_wall_stonecutting.json deleted file mode 100644 index 5a02dcd4..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_brick_wall_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_rhyolite_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_rhyolite_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_rhyolite_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_bricks.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_bricks.json deleted file mode 100644 index 59fefe1e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_rhyolite_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_rhyolite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_rhyolite_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_bricks_from_rhyolite_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_bricks_from_rhyolite_stonecutting.json deleted file mode 100644 index 7ccda6eb..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_bricks_from_rhyolite_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_rhyolite_bricks_from_rhyolite_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:rhyolite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_rhyolite_bricks_from_rhyolite_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_bricks_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_bricks_stonecutting.json deleted file mode 100644 index 92a1e5c2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_bricks_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_rhyolite_bricks_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_rhyolite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_rhyolite_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_slab.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_slab.json deleted file mode 100644 index 81683ecd..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_rhyolite_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_rhyolite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_rhyolite_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_slab_stonecutting.json deleted file mode 100644 index 2305e104..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_rhyolite_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_rhyolite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_rhyolite_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_stairs.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_stairs.json deleted file mode 100644 index 7fb158e9..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_rhyolite_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_rhyolite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_rhyolite_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_stairs_stonecutting.json deleted file mode 100644 index 72a87f2f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_rhyolite_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_rhyolite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_rhyolite_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_stonecutting.json deleted file mode 100644 index 751c109b..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/polished_rhyolite_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_rhyolite_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:rhyolite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_rhyolite_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite.json deleted file mode 100644 index dc453ec4..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:rhyolite" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:quartz" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:rhyolite" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_slab.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_slab.json deleted file mode 100644 index e48b19ec..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:rhyolite_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:rhyolite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:rhyolite_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_slab_stonecutting.json deleted file mode 100644 index 33fce96c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:rhyolite_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:rhyolite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:rhyolite_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_stairs.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_stairs.json deleted file mode 100644 index b855468e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:rhyolite_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:rhyolite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:rhyolite_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_stairs_stonecutting.json deleted file mode 100644 index 02f43c7d..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:rhyolite_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:rhyolite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:rhyolite_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_wall.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_wall.json deleted file mode 100644 index d69c025e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:rhyolite_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:rhyolite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:rhyolite_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_wall_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_wall_stonecutting.json deleted file mode 100644 index ee9d86ff..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rhyolite/rhyolite_wall_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:rhyolite_wall_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:rhyolite" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:rhyolite_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/rocky_dirt.json b/src/main/resources/data/twigs/advancements/recipes/rocky_dirt.json deleted file mode 100644 index bcf76666..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/rocky_dirt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:rocky_dirt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:pebble" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:rocky_dirt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/cracked_polished_schist_bricks.json b/src/main/resources/data/twigs/advancements/recipes/schist/cracked_polished_schist_bricks.json deleted file mode 100644 index 2351ca8f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/cracked_polished_schist_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cracked_polished_schist_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_schist_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cracked_polished_schist_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist.json b/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist.json deleted file mode 100644 index f1739b39..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_schist" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:schist" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_schist" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_slab.json b/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_slab.json deleted file mode 100644 index e6247a51..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_schist_brick_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_schist_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_schist_brick_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_slab_stonecutting.json deleted file mode 100644 index 358cb275..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_schist_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_schist_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_schist_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_stairs.json b/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_stairs.json deleted file mode 100644 index cf05df61..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_schist_brick_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_schist_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_schist_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_stairs_stonecutting.json deleted file mode 100644 index ffd5b35a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_schist_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_schist_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_schist_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_wall.json b/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_wall.json deleted file mode 100644 index 7841ffd7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_schist_brick_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_schist_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_schist_brick_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_wall_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_wall_stonecutting.json deleted file mode 100644 index 62b6faed..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_brick_wall_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_schist_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_schist_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_schist_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_bricks.json b/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_bricks.json deleted file mode 100644 index dfff52a5..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_schist_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_schist" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_schist_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_bricks_from_schist_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_bricks_from_schist_stonecutting.json deleted file mode 100644 index ec70c1c7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_bricks_from_schist_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_schist_bricks_from_schist_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:schist" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_schist_bricks_from_schist_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_bricks_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_bricks_stonecutting.json deleted file mode 100644 index 999e3704..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_bricks_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_schist_bricks_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_schist" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_schist_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_slab.json b/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_slab.json deleted file mode 100644 index 968248b1..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_schist_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_schist" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_schist_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_slab_stonecutting.json deleted file mode 100644 index 657d3e7d..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_schist_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_schist" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_schist_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_stairs.json b/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_stairs.json deleted file mode 100644 index e49feff0..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_schist_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_schist" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_schist_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_stairs_stonecutting.json deleted file mode 100644 index af2d60bc..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_schist_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_schist" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_schist_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_stonecutting.json deleted file mode 100644 index 8c3f3a16..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/polished_schist_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_schist_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:schist" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_schist_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/schist.json b/src/main/resources/data/twigs/advancements/recipes/schist/schist.json deleted file mode 100644 index c6301646..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/schist.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:schist" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:quartz" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:schist" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/schist_slab.json b/src/main/resources/data/twigs/advancements/recipes/schist/schist_slab.json deleted file mode 100644 index 77ed6f62..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/schist_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:schist_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:schist" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:schist_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/schist_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/schist/schist_slab_stonecutting.json deleted file mode 100644 index 9663b546..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/schist_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:schist_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:schist" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:schist_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/schist_stairs.json b/src/main/resources/data/twigs/advancements/recipes/schist/schist_stairs.json deleted file mode 100644 index 7a94d88d..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/schist_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:schist_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:schist" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:schist_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/schist_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/schist/schist_stairs_stonecutting.json deleted file mode 100644 index 5fb02341..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/schist_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:schist_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:schist" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:schist_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/schist_wall.json b/src/main/resources/data/twigs/advancements/recipes/schist/schist_wall.json deleted file mode 100644 index 6e67c3a5..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/schist_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:schist_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:schist" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:schist_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/schist/schist_wall_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/schist/schist_wall_stonecutting.json deleted file mode 100644 index 71e27619..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/schist/schist_wall_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:schist_wall_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:schist" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:schist_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/black_packed_silt_from_packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/black_packed_silt_from_packed_silt.json deleted file mode 100644 index b7cdc546..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/black_packed_silt_from_packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:black_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:black_packed_silt_from_packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/black_packed_silt_from_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/black_packed_silt_from_silt.json deleted file mode 100644 index f85ec79f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/black_packed_silt_from_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:black_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:black_packed_silt_from_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_pot_from_silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_pot_from_silt_pot.json deleted file mode 100644 index 8d053743..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_pot_from_silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:black_silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_pot" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:black_silt_pot_from_silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_slab.json deleted file mode 100644 index 0f2639e4..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:black_silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:black_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:black_silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_slab_from_black_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_slab_from_black_packed_silt_stonecutting.json deleted file mode 100644 index bbcd40ac..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_slab_from_black_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:black_silt_shingle_slab_from_black_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:black_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:black_silt_shingle_slab_from_black_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_slab_from_black_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_slab_from_black_silt_shingle_stonecutting.json deleted file mode 100644 index 68bf9acf..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_slab_from_black_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:black_silt_shingle_slab_from_black_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:black_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:black_silt_shingle_slab_from_black_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_stairs.json deleted file mode 100644 index af7e43a4..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:black_silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:black_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:black_silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_stairs_from_black_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_stairs_from_black_packed_silt_stonecutting.json deleted file mode 100644 index a1448c42..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_stairs_from_black_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:black_silt_shingle_stairs_from_black_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:black_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:black_silt_shingle_stairs_from_black_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_stairs_from_black_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_stairs_from_black_silt_shingle_stonecutting.json deleted file mode 100644 index af89cfec..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_stairs_from_black_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:black_silt_shingle_stairs_from_black_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:black_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:black_silt_shingle_stairs_from_black_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_wall.json deleted file mode 100644 index c0ff3aa0..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:black_silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:black_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:black_silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_wall_from_black_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_wall_from_black_packed_silt_stonecutting.json deleted file mode 100644 index 571c7aec..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_wall_from_black_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:black_silt_shingle_wall_from_black_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:black_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:black_silt_shingle_wall_from_black_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_wall_from_black_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_wall_from_black_silt_shingle_stonecutting.json deleted file mode 100644 index d563ef7a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingle_wall_from_black_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:black_silt_shingle_wall_from_black_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:black_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:black_silt_shingle_wall_from_black_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingles.json deleted file mode 100644 index eb3276ba..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:black_silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:black_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:black_silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index 99e64bb1..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/black_silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:black_silt_shingles_from_black_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:black_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:black_silt_shingles_from_black_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/blue_packed_silt_from_packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/blue_packed_silt_from_packed_silt.json deleted file mode 100644 index 2c3060a3..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/blue_packed_silt_from_packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blue_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blue_packed_silt_from_packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/blue_packed_silt_from_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/blue_packed_silt_from_silt.json deleted file mode 100644 index 7986957c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/blue_packed_silt_from_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blue_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blue_packed_silt_from_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_pot_from_silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_pot_from_silt_pot.json deleted file mode 100644 index 052835c4..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_pot_from_silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blue_silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_pot" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blue_silt_pot_from_silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_slab.json deleted file mode 100644 index cf652739..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blue_silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:blue_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blue_silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_slab_from_blue_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_slab_from_blue_packed_silt_stonecutting.json deleted file mode 100644 index 86359b8a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_slab_from_blue_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blue_silt_shingle_slab_from_blue_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:blue_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blue_silt_shingle_slab_from_blue_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_slab_from_blue_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_slab_from_blue_silt_shingle_stonecutting.json deleted file mode 100644 index 55631c81..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_slab_from_blue_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blue_silt_shingle_slab_from_blue_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:blue_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blue_silt_shingle_slab_from_blue_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_stairs.json deleted file mode 100644 index ffb2c521..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blue_silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:blue_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blue_silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_stairs_from_blue_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_stairs_from_blue_packed_silt_stonecutting.json deleted file mode 100644 index 55112942..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_stairs_from_blue_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blue_silt_shingle_stairs_from_blue_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:blue_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blue_silt_shingle_stairs_from_blue_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_stairs_from_blue_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_stairs_from_blue_silt_shingle_stonecutting.json deleted file mode 100644 index e9d15afd..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_stairs_from_blue_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blue_silt_shingle_stairs_from_blue_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:blue_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blue_silt_shingle_stairs_from_blue_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_wall.json deleted file mode 100644 index 9ef29a79..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blue_silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:blue_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blue_silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_wall_from_blue_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_wall_from_blue_packed_silt_stonecutting.json deleted file mode 100644 index 640be12c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_wall_from_blue_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blue_silt_shingle_wall_from_blue_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:blue_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blue_silt_shingle_wall_from_blue_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_wall_from_blue_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_wall_from_blue_silt_shingle_stonecutting.json deleted file mode 100644 index 0b7eec28..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingle_wall_from_blue_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blue_silt_shingle_wall_from_blue_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:blue_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blue_silt_shingle_wall_from_blue_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingles.json deleted file mode 100644 index 8f4b1d06..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blue_silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:blue_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blue_silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index 161d9854..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/blue_silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:blue_silt_shingles_from_blue_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:blue_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:blue_silt_shingles_from_blue_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/brown_packed_silt_from_packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/brown_packed_silt_from_packed_silt.json deleted file mode 100644 index e694e86f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/brown_packed_silt_from_packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:brown_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:brown_packed_silt_from_packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/brown_packed_silt_from_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/brown_packed_silt_from_silt.json deleted file mode 100644 index 748affc5..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/brown_packed_silt_from_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:brown_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:brown_packed_silt_from_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_pot_from_silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_pot_from_silt_pot.json deleted file mode 100644 index 7153b19b..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_pot_from_silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:brown_silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_pot" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:brown_silt_pot_from_silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_slab.json deleted file mode 100644 index 59bd069e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:brown_silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:brown_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:brown_silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_slab_from_brown_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_slab_from_brown_packed_silt_stonecutting.json deleted file mode 100644 index 16149665..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_slab_from_brown_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:brown_silt_shingle_slab_from_brown_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:brown_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:brown_silt_shingle_slab_from_brown_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_slab_from_brown_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_slab_from_brown_silt_shingle_stonecutting.json deleted file mode 100644 index 196d3611..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_slab_from_brown_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:brown_silt_shingle_slab_from_brown_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:brown_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:brown_silt_shingle_slab_from_brown_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_stairs.json deleted file mode 100644 index 9e858825..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:brown_silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:brown_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:brown_silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_stairs_from_brown_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_stairs_from_brown_packed_silt_stonecutting.json deleted file mode 100644 index 795b5c55..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_stairs_from_brown_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:brown_silt_shingle_stairs_from_brown_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:brown_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:brown_silt_shingle_stairs_from_brown_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_stairs_from_brown_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_stairs_from_brown_silt_shingle_stonecutting.json deleted file mode 100644 index 43775795..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_stairs_from_brown_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:brown_silt_shingle_stairs_from_brown_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:brown_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:brown_silt_shingle_stairs_from_brown_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_wall.json deleted file mode 100644 index bbc24ee5..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:brown_silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:brown_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:brown_silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_wall_from_brown_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_wall_from_brown_packed_silt_stonecutting.json deleted file mode 100644 index d08083d9..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_wall_from_brown_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:brown_silt_shingle_wall_from_brown_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:brown_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:brown_silt_shingle_wall_from_brown_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_wall_from_brown_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_wall_from_brown_silt_shingle_stonecutting.json deleted file mode 100644 index 38442de4..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingle_wall_from_brown_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:brown_silt_shingle_wall_from_brown_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:brown_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:brown_silt_shingle_wall_from_brown_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingles.json deleted file mode 100644 index 3ad5e815..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:brown_silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:brown_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:brown_silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index 137ea9b4..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/brown_silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:brown_silt_shingles_from_brown_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:brown_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:brown_silt_shingles_from_brown_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/chiseled_silt_bricks.json b/src/main/resources/data/twigs/advancements/recipes/silt/chiseled_silt_bricks.json deleted file mode 100644 index 61e1e68d..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/chiseled_silt_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:chiseled_silt_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:chiseled_silt_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/chiseled_silt_bricks_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/chiseled_silt_bricks_stonecutting.json deleted file mode 100644 index fe298ccd..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/chiseled_silt_bricks_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:chiseled_silt_bricks_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:chiseled_silt_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/cracked_silt_bricks.json b/src/main/resources/data/twigs/advancements/recipes/silt/cracked_silt_bricks.json deleted file mode 100644 index 5ccc7316..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/cracked_silt_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cracked_silt_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cracked_silt_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_packed_silt_from_packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/cyan_packed_silt_from_packed_silt.json deleted file mode 100644 index 7c46fd83..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_packed_silt_from_packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cyan_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cyan_packed_silt_from_packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_packed_silt_from_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/cyan_packed_silt_from_silt.json deleted file mode 100644 index e7a0c1de..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_packed_silt_from_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cyan_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cyan_packed_silt_from_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_pot_from_silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_pot_from_silt_pot.json deleted file mode 100644 index 4f0d2eff..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_pot_from_silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cyan_silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_pot" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cyan_silt_pot_from_silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_slab.json deleted file mode 100644 index 9ab8330a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cyan_silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cyan_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cyan_silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_slab_from_cyan_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_slab_from_cyan_packed_silt_stonecutting.json deleted file mode 100644 index 7e843654..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_slab_from_cyan_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cyan_silt_shingle_slab_from_cyan_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cyan_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cyan_silt_shingle_slab_from_cyan_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_slab_from_cyan_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_slab_from_cyan_silt_shingle_stonecutting.json deleted file mode 100644 index 6e033448..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_slab_from_cyan_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cyan_silt_shingle_slab_from_cyan_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cyan_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cyan_silt_shingle_slab_from_cyan_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_stairs.json deleted file mode 100644 index ebf1d4a9..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cyan_silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cyan_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cyan_silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_stairs_from_cyan_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_stairs_from_cyan_packed_silt_stonecutting.json deleted file mode 100644 index 021cd9a8..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_stairs_from_cyan_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cyan_silt_shingle_stairs_from_cyan_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cyan_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cyan_silt_shingle_stairs_from_cyan_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_stairs_from_cyan_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_stairs_from_cyan_silt_shingle_stonecutting.json deleted file mode 100644 index 3bc3f011..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_stairs_from_cyan_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cyan_silt_shingle_stairs_from_cyan_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cyan_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cyan_silt_shingle_stairs_from_cyan_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_wall.json deleted file mode 100644 index 2f1e3be9..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cyan_silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cyan_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cyan_silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_wall_from_cyan_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_wall_from_cyan_packed_silt_stonecutting.json deleted file mode 100644 index a42a9188..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_wall_from_cyan_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cyan_silt_shingle_wall_from_cyan_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cyan_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cyan_silt_shingle_wall_from_cyan_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_wall_from_cyan_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_wall_from_cyan_silt_shingle_stonecutting.json deleted file mode 100644 index 389be6db..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingle_wall_from_cyan_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cyan_silt_shingle_wall_from_cyan_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cyan_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cyan_silt_shingle_wall_from_cyan_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingles.json deleted file mode 100644 index 8cbdf7e2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cyan_silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cyan_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cyan_silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index 783c6649..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/cyan_silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cyan_silt_shingles_from_cyan_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:cyan_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cyan_silt_shingles_from_cyan_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/gray_packed_silt_from_packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/gray_packed_silt_from_packed_silt.json deleted file mode 100644 index 3db5c025..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/gray_packed_silt_from_packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gray_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gray_packed_silt_from_packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/gray_packed_silt_from_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/gray_packed_silt_from_silt.json deleted file mode 100644 index 93edf422..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/gray_packed_silt_from_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gray_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gray_packed_silt_from_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_pot_from_silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_pot_from_silt_pot.json deleted file mode 100644 index d13ff9cf..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_pot_from_silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gray_silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_pot" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gray_silt_pot_from_silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_slab.json deleted file mode 100644 index e12d60a9..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gray_silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:gray_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gray_silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_slab_from_gray_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_slab_from_gray_packed_silt_stonecutting.json deleted file mode 100644 index 65cecef5..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_slab_from_gray_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gray_silt_shingle_slab_from_gray_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:gray_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gray_silt_shingle_slab_from_gray_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_slab_from_gray_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_slab_from_gray_silt_shingle_stonecutting.json deleted file mode 100644 index 8ce343c3..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_slab_from_gray_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gray_silt_shingle_slab_from_gray_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:gray_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gray_silt_shingle_slab_from_gray_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_stairs.json deleted file mode 100644 index d7f0dff0..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gray_silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:gray_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gray_silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_stairs_from_gray_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_stairs_from_gray_packed_silt_stonecutting.json deleted file mode 100644 index 7c1b16f9..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_stairs_from_gray_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gray_silt_shingle_stairs_from_gray_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:gray_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gray_silt_shingle_stairs_from_gray_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_stairs_from_gray_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_stairs_from_gray_silt_shingle_stonecutting.json deleted file mode 100644 index f38424c1..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_stairs_from_gray_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gray_silt_shingle_stairs_from_gray_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:gray_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gray_silt_shingle_stairs_from_gray_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_wall.json deleted file mode 100644 index b8a08876..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gray_silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:gray_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gray_silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_wall_from_gray_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_wall_from_gray_packed_silt_stonecutting.json deleted file mode 100644 index 79c78f00..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_wall_from_gray_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gray_silt_shingle_wall_from_gray_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:gray_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gray_silt_shingle_wall_from_gray_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_wall_from_gray_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_wall_from_gray_silt_shingle_stonecutting.json deleted file mode 100644 index 7e8903ea..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingle_wall_from_gray_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gray_silt_shingle_wall_from_gray_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:gray_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gray_silt_shingle_wall_from_gray_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingles.json deleted file mode 100644 index 7c6c3a74..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gray_silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:gray_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gray_silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index 2b9e7260..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/gray_silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:gray_silt_shingles_from_gray_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:gray_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:gray_silt_shingles_from_gray_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/green_packed_silt_from_packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/green_packed_silt_from_packed_silt.json deleted file mode 100644 index 0e743291..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/green_packed_silt_from_packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:green_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:green_packed_silt_from_packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/green_packed_silt_from_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/green_packed_silt_from_silt.json deleted file mode 100644 index 082a0970..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/green_packed_silt_from_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:green_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:green_packed_silt_from_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_pot_from_silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_pot_from_silt_pot.json deleted file mode 100644 index 48e15e82..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_pot_from_silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:green_silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_pot" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:green_silt_pot_from_silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_slab.json deleted file mode 100644 index 9eba05cd..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:green_silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:green_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:green_silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_slab_from_green_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_slab_from_green_packed_silt_stonecutting.json deleted file mode 100644 index df4f6764..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_slab_from_green_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:green_silt_shingle_slab_from_green_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:green_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:green_silt_shingle_slab_from_green_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_slab_from_green_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_slab_from_green_silt_shingle_stonecutting.json deleted file mode 100644 index 0bc52843..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_slab_from_green_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:green_silt_shingle_slab_from_green_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:green_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:green_silt_shingle_slab_from_green_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_stairs.json deleted file mode 100644 index d23d6860..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:green_silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:green_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:green_silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_stairs_from_green_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_stairs_from_green_packed_silt_stonecutting.json deleted file mode 100644 index c828395e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_stairs_from_green_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:green_silt_shingle_stairs_from_green_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:green_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:green_silt_shingle_stairs_from_green_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_stairs_from_green_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_stairs_from_green_silt_shingle_stonecutting.json deleted file mode 100644 index c8c5e079..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_stairs_from_green_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:green_silt_shingle_stairs_from_green_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:green_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:green_silt_shingle_stairs_from_green_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_wall.json deleted file mode 100644 index c05f7b1e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:green_silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:green_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:green_silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_wall_from_green_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_wall_from_green_packed_silt_stonecutting.json deleted file mode 100644 index 62090426..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_wall_from_green_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:green_silt_shingle_wall_from_green_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:green_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:green_silt_shingle_wall_from_green_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_wall_from_green_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_wall_from_green_silt_shingle_stonecutting.json deleted file mode 100644 index 7585e8ad..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingle_wall_from_green_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:green_silt_shingle_wall_from_green_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:green_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:green_silt_shingle_wall_from_green_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingles.json deleted file mode 100644 index 190f7eab..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:green_silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:green_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:green_silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index 4e49666c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/green_silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:green_silt_shingles_from_green_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:green_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:green_silt_shingles_from_green_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_packed_silt_from_packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_packed_silt_from_packed_silt.json deleted file mode 100644 index 62e0d5a2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_packed_silt_from_packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_blue_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_blue_packed_silt_from_packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_packed_silt_from_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_packed_silt_from_silt.json deleted file mode 100644 index cb9469e0..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_packed_silt_from_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_blue_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_blue_packed_silt_from_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_pot_from_silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_pot_from_silt_pot.json deleted file mode 100644 index 9d97e0f2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_pot_from_silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_blue_silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_pot" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_blue_silt_pot_from_silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_slab.json deleted file mode 100644 index e6209505..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_blue_silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_blue_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_blue_silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_slab_from_light_blue_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_slab_from_light_blue_packed_silt_stonecutting.json deleted file mode 100644 index 13f8e8d0..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_slab_from_light_blue_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_blue_silt_shingle_slab_from_light_blue_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_blue_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_blue_silt_shingle_slab_from_light_blue_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_slab_from_light_blue_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_slab_from_light_blue_silt_shingle_stonecutting.json deleted file mode 100644 index 95e00ae0..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_slab_from_light_blue_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_blue_silt_shingle_slab_from_light_blue_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_blue_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_blue_silt_shingle_slab_from_light_blue_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_stairs.json deleted file mode 100644 index 7cb88dbb..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_blue_silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_blue_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_blue_silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_stairs_from_light_blue_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_stairs_from_light_blue_packed_silt_stonecutting.json deleted file mode 100644 index cc895a4d..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_stairs_from_light_blue_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_blue_silt_shingle_stairs_from_light_blue_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_blue_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_blue_silt_shingle_stairs_from_light_blue_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_stairs_from_light_blue_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_stairs_from_light_blue_silt_shingle_stonecutting.json deleted file mode 100644 index ad2c81a8..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_stairs_from_light_blue_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_blue_silt_shingle_stairs_from_light_blue_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_blue_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_blue_silt_shingle_stairs_from_light_blue_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_wall.json deleted file mode 100644 index 7d5fc7fb..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_blue_silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_blue_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_blue_silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_wall_from_light_blue_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_wall_from_light_blue_packed_silt_stonecutting.json deleted file mode 100644 index e16b9be7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_wall_from_light_blue_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_blue_silt_shingle_wall_from_light_blue_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_blue_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_blue_silt_shingle_wall_from_light_blue_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_wall_from_light_blue_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_wall_from_light_blue_silt_shingle_stonecutting.json deleted file mode 100644 index 6f515294..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingle_wall_from_light_blue_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_blue_silt_shingle_wall_from_light_blue_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_blue_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_blue_silt_shingle_wall_from_light_blue_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingles.json deleted file mode 100644 index fb2e711f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_blue_silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_blue_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_blue_silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index 1f64f97c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_blue_silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_blue_silt_shingles_from_light_blue_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_blue_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_blue_silt_shingles_from_light_blue_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_packed_silt_from_packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_packed_silt_from_packed_silt.json deleted file mode 100644 index 12a1f40f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_packed_silt_from_packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_gray_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_gray_packed_silt_from_packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_packed_silt_from_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_packed_silt_from_silt.json deleted file mode 100644 index 53895b35..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_packed_silt_from_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_gray_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_gray_packed_silt_from_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_pot_from_silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_pot_from_silt_pot.json deleted file mode 100644 index 6ee6b4cb..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_pot_from_silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_gray_silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_pot" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_gray_silt_pot_from_silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_slab.json deleted file mode 100644 index 696b328c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_gray_silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_gray_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_gray_silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_slab_from_light_gray_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_slab_from_light_gray_packed_silt_stonecutting.json deleted file mode 100644 index cb56fcc2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_slab_from_light_gray_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_gray_silt_shingle_slab_from_light_gray_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_gray_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_gray_silt_shingle_slab_from_light_gray_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_slab_from_light_gray_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_slab_from_light_gray_silt_shingle_stonecutting.json deleted file mode 100644 index d8e77c57..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_slab_from_light_gray_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_gray_silt_shingle_slab_from_light_gray_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_gray_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_gray_silt_shingle_slab_from_light_gray_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_stairs.json deleted file mode 100644 index bd19b57b..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_gray_silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_gray_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_gray_silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_stairs_from_light_gray_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_stairs_from_light_gray_packed_silt_stonecutting.json deleted file mode 100644 index 228febf7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_stairs_from_light_gray_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_gray_silt_shingle_stairs_from_light_gray_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_gray_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_gray_silt_shingle_stairs_from_light_gray_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_stairs_from_light_gray_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_stairs_from_light_gray_silt_shingle_stonecutting.json deleted file mode 100644 index d39b3e0a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_stairs_from_light_gray_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_gray_silt_shingle_stairs_from_light_gray_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_gray_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_gray_silt_shingle_stairs_from_light_gray_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_wall.json deleted file mode 100644 index d903f689..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_gray_silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_gray_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_gray_silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_wall_from_light_gray_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_wall_from_light_gray_packed_silt_stonecutting.json deleted file mode 100644 index f31e4239..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_wall_from_light_gray_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_gray_silt_shingle_wall_from_light_gray_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_gray_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_gray_silt_shingle_wall_from_light_gray_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_wall_from_light_gray_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_wall_from_light_gray_silt_shingle_stonecutting.json deleted file mode 100644 index a878b9a4..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingle_wall_from_light_gray_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_gray_silt_shingle_wall_from_light_gray_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_gray_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_gray_silt_shingle_wall_from_light_gray_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingles.json deleted file mode 100644 index b3c776a6..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_gray_silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_gray_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_gray_silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index f28e00b0..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/light_gray_silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:light_gray_silt_shingles_from_light_gray_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:light_gray_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:light_gray_silt_shingles_from_light_gray_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/lime_packed_silt_from_packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/lime_packed_silt_from_packed_silt.json deleted file mode 100644 index dafb0b15..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/lime_packed_silt_from_packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:lime_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:lime_packed_silt_from_packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/lime_packed_silt_from_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/lime_packed_silt_from_silt.json deleted file mode 100644 index c6605c8f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/lime_packed_silt_from_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:lime_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:lime_packed_silt_from_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_pot_from_silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_pot_from_silt_pot.json deleted file mode 100644 index f6c51578..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_pot_from_silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:lime_silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_pot" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:lime_silt_pot_from_silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_slab.json deleted file mode 100644 index bdf781d7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:lime_silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:lime_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:lime_silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_slab_from_lime_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_slab_from_lime_packed_silt_stonecutting.json deleted file mode 100644 index 23d9031f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_slab_from_lime_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:lime_silt_shingle_slab_from_lime_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:lime_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:lime_silt_shingle_slab_from_lime_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_slab_from_lime_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_slab_from_lime_silt_shingle_stonecutting.json deleted file mode 100644 index 52b81712..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_slab_from_lime_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:lime_silt_shingle_slab_from_lime_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:lime_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:lime_silt_shingle_slab_from_lime_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_stairs.json deleted file mode 100644 index f64618b8..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:lime_silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:lime_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:lime_silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_stairs_from_lime_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_stairs_from_lime_packed_silt_stonecutting.json deleted file mode 100644 index 622b3413..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_stairs_from_lime_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:lime_silt_shingle_stairs_from_lime_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:lime_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:lime_silt_shingle_stairs_from_lime_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_stairs_from_lime_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_stairs_from_lime_silt_shingle_stonecutting.json deleted file mode 100644 index 88653486..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_stairs_from_lime_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:lime_silt_shingle_stairs_from_lime_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:lime_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:lime_silt_shingle_stairs_from_lime_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_wall.json deleted file mode 100644 index b912c318..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:lime_silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:lime_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:lime_silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_wall_from_lime_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_wall_from_lime_packed_silt_stonecutting.json deleted file mode 100644 index ea480b0e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_wall_from_lime_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:lime_silt_shingle_wall_from_lime_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:lime_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:lime_silt_shingle_wall_from_lime_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_wall_from_lime_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_wall_from_lime_silt_shingle_stonecutting.json deleted file mode 100644 index 89af5de6..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingle_wall_from_lime_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:lime_silt_shingle_wall_from_lime_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:lime_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:lime_silt_shingle_wall_from_lime_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingles.json deleted file mode 100644 index 40d56d72..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:lime_silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:lime_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:lime_silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index 198e2098..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/lime_silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:lime_silt_shingles_from_lime_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:lime_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:lime_silt_shingles_from_lime_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_packed_silt_from_packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/magenta_packed_silt_from_packed_silt.json deleted file mode 100644 index 73471c53..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_packed_silt_from_packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:magenta_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:magenta_packed_silt_from_packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_packed_silt_from_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/magenta_packed_silt_from_silt.json deleted file mode 100644 index a0ddaebf..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_packed_silt_from_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:magenta_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:magenta_packed_silt_from_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_pot_from_silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_pot_from_silt_pot.json deleted file mode 100644 index 61b3e382..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_pot_from_silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:magenta_silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_pot" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:magenta_silt_pot_from_silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_slab.json deleted file mode 100644 index e660f54e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:magenta_silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:magenta_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:magenta_silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_slab_from_magenta_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_slab_from_magenta_packed_silt_stonecutting.json deleted file mode 100644 index ffdb1e22..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_slab_from_magenta_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:magenta_silt_shingle_slab_from_magenta_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:magenta_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:magenta_silt_shingle_slab_from_magenta_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_slab_from_magenta_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_slab_from_magenta_silt_shingle_stonecutting.json deleted file mode 100644 index 546c37bb..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_slab_from_magenta_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:magenta_silt_shingle_slab_from_magenta_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:magenta_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:magenta_silt_shingle_slab_from_magenta_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_stairs.json deleted file mode 100644 index 6c316935..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:magenta_silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:magenta_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:magenta_silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_stairs_from_magenta_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_stairs_from_magenta_packed_silt_stonecutting.json deleted file mode 100644 index 2dbde557..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_stairs_from_magenta_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:magenta_silt_shingle_stairs_from_magenta_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:magenta_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:magenta_silt_shingle_stairs_from_magenta_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_stairs_from_magenta_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_stairs_from_magenta_silt_shingle_stonecutting.json deleted file mode 100644 index bd815737..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_stairs_from_magenta_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:magenta_silt_shingle_stairs_from_magenta_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:magenta_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:magenta_silt_shingle_stairs_from_magenta_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_wall.json deleted file mode 100644 index fbe18998..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:magenta_silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:magenta_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:magenta_silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_wall_from_magenta_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_wall_from_magenta_packed_silt_stonecutting.json deleted file mode 100644 index 981ca5d1..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_wall_from_magenta_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:magenta_silt_shingle_wall_from_magenta_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:magenta_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:magenta_silt_shingle_wall_from_magenta_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_wall_from_magenta_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_wall_from_magenta_silt_shingle_stonecutting.json deleted file mode 100644 index 2e6a03e7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingle_wall_from_magenta_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:magenta_silt_shingle_wall_from_magenta_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:magenta_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:magenta_silt_shingle_wall_from_magenta_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingles.json deleted file mode 100644 index 5c6dcbee..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:magenta_silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:magenta_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:magenta_silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index 701725d3..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/magenta_silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:magenta_silt_shingles_from_magenta_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:magenta_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:magenta_silt_shingles_from_magenta_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/mixed_silt_bricks.json b/src/main/resources/data/twigs/advancements/recipes/silt/mixed_silt_bricks.json deleted file mode 100644 index 444f4d5b..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/mixed_silt_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mixed_silt_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mixed_silt_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/mixed_silt_bricks_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/mixed_silt_bricks_stonecutting.json deleted file mode 100644 index e4d9c299..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/mixed_silt_bricks_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mixed_silt_bricks_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mixed_silt_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/orange_packed_silt_from_packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/orange_packed_silt_from_packed_silt.json deleted file mode 100644 index 9e6e03e7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/orange_packed_silt_from_packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:orange_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:orange_packed_silt_from_packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/orange_packed_silt_from_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/orange_packed_silt_from_silt.json deleted file mode 100644 index c757c621..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/orange_packed_silt_from_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:orange_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:orange_packed_silt_from_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_pot_from_silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_pot_from_silt_pot.json deleted file mode 100644 index 0cb4f6f9..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_pot_from_silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:orange_silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_pot" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:orange_silt_pot_from_silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_slab.json deleted file mode 100644 index 8cd5ca5f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:orange_silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:orange_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:orange_silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_slab_from_orange_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_slab_from_orange_packed_silt_stonecutting.json deleted file mode 100644 index 67609175..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_slab_from_orange_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:orange_silt_shingle_slab_from_orange_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:orange_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:orange_silt_shingle_slab_from_orange_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_slab_from_orange_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_slab_from_orange_silt_shingle_stonecutting.json deleted file mode 100644 index 91387747..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_slab_from_orange_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:orange_silt_shingle_slab_from_orange_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:orange_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:orange_silt_shingle_slab_from_orange_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_stairs.json deleted file mode 100644 index 138c1dec..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:orange_silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:orange_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:orange_silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_stairs_from_orange_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_stairs_from_orange_packed_silt_stonecutting.json deleted file mode 100644 index 12d3f9f7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_stairs_from_orange_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:orange_silt_shingle_stairs_from_orange_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:orange_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:orange_silt_shingle_stairs_from_orange_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_stairs_from_orange_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_stairs_from_orange_silt_shingle_stonecutting.json deleted file mode 100644 index 63edab96..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_stairs_from_orange_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:orange_silt_shingle_stairs_from_orange_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:orange_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:orange_silt_shingle_stairs_from_orange_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_wall.json deleted file mode 100644 index 3dfa091b..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:orange_silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:orange_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:orange_silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_wall_from_orange_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_wall_from_orange_packed_silt_stonecutting.json deleted file mode 100644 index 9806cd49..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_wall_from_orange_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:orange_silt_shingle_wall_from_orange_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:orange_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:orange_silt_shingle_wall_from_orange_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_wall_from_orange_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_wall_from_orange_silt_shingle_stonecutting.json deleted file mode 100644 index 6b2a1989..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingle_wall_from_orange_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:orange_silt_shingle_wall_from_orange_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:orange_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:orange_silt_shingle_wall_from_orange_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingles.json deleted file mode 100644 index 82ceddf1..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:orange_silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:orange_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:orange_silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index 700e38a0..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/orange_silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:orange_silt_shingles_from_orange_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:orange_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:orange_silt_shingles_from_orange_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/packed_silt.json deleted file mode 100644 index ddaa7796..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/pink_packed_silt_from_packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/pink_packed_silt_from_packed_silt.json deleted file mode 100644 index e6b9ace8..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/pink_packed_silt_from_packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:pink_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:pink_packed_silt_from_packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/pink_packed_silt_from_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/pink_packed_silt_from_silt.json deleted file mode 100644 index 1298e46d..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/pink_packed_silt_from_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:pink_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:pink_packed_silt_from_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_pot_from_silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_pot_from_silt_pot.json deleted file mode 100644 index e635db86..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_pot_from_silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:pink_silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_pot" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:pink_silt_pot_from_silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_slab.json deleted file mode 100644 index 869095b2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:pink_silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:pink_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:pink_silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_slab_from_pink_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_slab_from_pink_packed_silt_stonecutting.json deleted file mode 100644 index dc9bb56c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_slab_from_pink_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:pink_silt_shingle_slab_from_pink_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:pink_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:pink_silt_shingle_slab_from_pink_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_slab_from_pink_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_slab_from_pink_silt_shingle_stonecutting.json deleted file mode 100644 index 3efb219f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_slab_from_pink_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:pink_silt_shingle_slab_from_pink_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:pink_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:pink_silt_shingle_slab_from_pink_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_stairs.json deleted file mode 100644 index a7793204..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:pink_silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:pink_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:pink_silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_stairs_from_pink_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_stairs_from_pink_packed_silt_stonecutting.json deleted file mode 100644 index 60268358..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_stairs_from_pink_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:pink_silt_shingle_stairs_from_pink_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:pink_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:pink_silt_shingle_stairs_from_pink_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_stairs_from_pink_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_stairs_from_pink_silt_shingle_stonecutting.json deleted file mode 100644 index b2cb6b3a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_stairs_from_pink_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:pink_silt_shingle_stairs_from_pink_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:pink_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:pink_silt_shingle_stairs_from_pink_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_wall.json deleted file mode 100644 index 56f69684..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:pink_silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:pink_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:pink_silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_wall_from_pink_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_wall_from_pink_packed_silt_stonecutting.json deleted file mode 100644 index 2c6bc1c9..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_wall_from_pink_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:pink_silt_shingle_wall_from_pink_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:pink_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:pink_silt_shingle_wall_from_pink_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_wall_from_pink_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_wall_from_pink_silt_shingle_stonecutting.json deleted file mode 100644 index 5cbcc171..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingle_wall_from_pink_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:pink_silt_shingle_wall_from_pink_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:pink_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:pink_silt_shingle_wall_from_pink_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingles.json deleted file mode 100644 index a37db925..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:pink_silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:pink_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:pink_silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index bdfe4af5..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/pink_silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:pink_silt_shingles_from_pink_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:pink_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:pink_silt_shingles_from_pink_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/purple_packed_silt_from_packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/purple_packed_silt_from_packed_silt.json deleted file mode 100644 index 7a7baa2f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/purple_packed_silt_from_packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:purple_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:purple_packed_silt_from_packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/purple_packed_silt_from_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/purple_packed_silt_from_silt.json deleted file mode 100644 index 4d2bfb10..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/purple_packed_silt_from_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:purple_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:purple_packed_silt_from_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_pot_from_silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_pot_from_silt_pot.json deleted file mode 100644 index ffd31285..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_pot_from_silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:purple_silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_pot" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:purple_silt_pot_from_silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_slab.json deleted file mode 100644 index d6573ead..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:purple_silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:purple_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:purple_silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_slab_from_purple_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_slab_from_purple_packed_silt_stonecutting.json deleted file mode 100644 index 2b668e5c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_slab_from_purple_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:purple_silt_shingle_slab_from_purple_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:purple_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:purple_silt_shingle_slab_from_purple_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_slab_from_purple_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_slab_from_purple_silt_shingle_stonecutting.json deleted file mode 100644 index 3f006f59..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_slab_from_purple_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:purple_silt_shingle_slab_from_purple_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:purple_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:purple_silt_shingle_slab_from_purple_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_stairs.json deleted file mode 100644 index 2fa85955..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:purple_silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:purple_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:purple_silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_stairs_from_purple_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_stairs_from_purple_packed_silt_stonecutting.json deleted file mode 100644 index a646ea6a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_stairs_from_purple_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:purple_silt_shingle_stairs_from_purple_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:purple_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:purple_silt_shingle_stairs_from_purple_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_stairs_from_purple_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_stairs_from_purple_silt_shingle_stonecutting.json deleted file mode 100644 index 93bbafe3..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_stairs_from_purple_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:purple_silt_shingle_stairs_from_purple_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:purple_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:purple_silt_shingle_stairs_from_purple_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_wall.json deleted file mode 100644 index b1ce2b37..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:purple_silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:purple_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:purple_silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_wall_from_purple_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_wall_from_purple_packed_silt_stonecutting.json deleted file mode 100644 index 0924d94b..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_wall_from_purple_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:purple_silt_shingle_wall_from_purple_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:purple_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:purple_silt_shingle_wall_from_purple_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_wall_from_purple_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_wall_from_purple_silt_shingle_stonecutting.json deleted file mode 100644 index c106df28..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingle_wall_from_purple_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:purple_silt_shingle_wall_from_purple_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:purple_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:purple_silt_shingle_wall_from_purple_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingles.json deleted file mode 100644 index 5c6e4e9e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:purple_silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:purple_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:purple_silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index 4e3d95cb..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/purple_silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:purple_silt_shingles_from_purple_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:purple_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:purple_silt_shingles_from_purple_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/red_packed_silt_from_packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/red_packed_silt_from_packed_silt.json deleted file mode 100644 index 2c9349bf..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/red_packed_silt_from_packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:red_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:red_packed_silt_from_packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/red_packed_silt_from_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/red_packed_silt_from_silt.json deleted file mode 100644 index 53ce66a7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/red_packed_silt_from_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:red_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:red_packed_silt_from_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_pot_from_silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_pot_from_silt_pot.json deleted file mode 100644 index ce0d368c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_pot_from_silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:red_silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_pot" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:red_silt_pot_from_silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_slab.json deleted file mode 100644 index 1f09858f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:red_silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:red_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:red_silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_slab_from_red_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_slab_from_red_packed_silt_stonecutting.json deleted file mode 100644 index 08eff1f7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_slab_from_red_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:red_silt_shingle_slab_from_red_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:red_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:red_silt_shingle_slab_from_red_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_slab_from_red_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_slab_from_red_silt_shingle_stonecutting.json deleted file mode 100644 index 55112457..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_slab_from_red_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:red_silt_shingle_slab_from_red_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:red_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:red_silt_shingle_slab_from_red_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_stairs.json deleted file mode 100644 index a85c7e22..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:red_silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:red_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:red_silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_stairs_from_red_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_stairs_from_red_packed_silt_stonecutting.json deleted file mode 100644 index 9d78e846..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_stairs_from_red_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:red_silt_shingle_stairs_from_red_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:red_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:red_silt_shingle_stairs_from_red_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_stairs_from_red_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_stairs_from_red_silt_shingle_stonecutting.json deleted file mode 100644 index 9961d2b2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_stairs_from_red_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:red_silt_shingle_stairs_from_red_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:red_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:red_silt_shingle_stairs_from_red_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_wall.json deleted file mode 100644 index 91913c3a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:red_silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:red_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:red_silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_wall_from_red_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_wall_from_red_packed_silt_stonecutting.json deleted file mode 100644 index 8951f2f4..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_wall_from_red_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:red_silt_shingle_wall_from_red_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:red_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:red_silt_shingle_wall_from_red_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_wall_from_red_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_wall_from_red_silt_shingle_stonecutting.json deleted file mode 100644 index 695e4abd..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingle_wall_from_red_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:red_silt_shingle_wall_from_red_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:red_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:red_silt_shingle_wall_from_red_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingles.json deleted file mode 100644 index 16894ade..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:red_silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:red_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:red_silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index 4dae0dbe..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/red_silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:red_silt_shingles_from_red_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:red_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:red_silt_shingles_from_red_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick.json deleted file mode 100644 index 323c4508..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_brick" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_ball" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_brick" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_slab.json deleted file mode 100644 index 4b846d1c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_brick_slab" - ] - }, - "criteria": { - "has_silt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_brick_slab" - } - } - }, - "requirements": [ - [ - "has_silt_bricks", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_slab_from_silt_brick_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_slab_from_silt_brick_stonecutting.json deleted file mode 100644 index 496ded09..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_slab_from_silt_brick_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_brick_slab_from_silt_brick_stonecutting" - ] - }, - "criteria": { - "has_silt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_brick_slab_from_silt_brick_stonecutting" - } - } - }, - "requirements": [ - [ - "has_silt_bricks", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_stairs.json deleted file mode 100644 index aaeb99f2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_brick_stairs" - ] - }, - "criteria": { - "has_silt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_silt_bricks", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_stairs_from_silt_brick_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_stairs_from_silt_brick_stonecutting.json deleted file mode 100644 index 03d3f2ff..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_stairs_from_silt_brick_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_brick_stairs_from_silt_brick_stonecutting" - ] - }, - "criteria": { - "has_silt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_brick_stairs_from_silt_brick_stonecutting" - } - } - }, - "requirements": [ - [ - "has_silt_bricks", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_trail.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_trail.json deleted file mode 100644 index 1c55f3b5..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_trail.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_brick_trail" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_brick" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_brick_trail" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_wall.json deleted file mode 100644 index f405beae..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_brick_wall" - ] - }, - "criteria": { - "has_silt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_brick_wall" - } - } - }, - "requirements": [ - [ - "has_silt_bricks", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_wall_from_silt_brick_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_wall_from_silt_brick_stonecutting.json deleted file mode 100644 index 2816340e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_brick_wall_from_silt_brick_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_brick_wall_from_silt_brick_stonecutting" - ] - }, - "criteria": { - "has_silt_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_brick_wall_from_silt_brick_stonecutting" - } - } - }, - "requirements": [ - [ - "has_silt_bricks", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_bricks.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_bricks.json deleted file mode 100644 index 6575d635..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_brick" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_from_clay.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_from_clay.json deleted file mode 100644 index 148a8cbd..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_from_clay.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:clay" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_from_clay" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_from_sand.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_from_sand.json deleted file mode 100644 index 8366f12a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_from_sand.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:sand" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_from_sand" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_from_silt_balls.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_from_silt_balls.json deleted file mode 100644 index b6ed170c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_from_silt_balls.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_from_silt_balls" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_ball" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_from_silt_balls" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_pot.json deleted file mode 100644 index 6fc2b0f0..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_brick" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_slab.json deleted file mode 100644 index f2978e84..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_slab_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_slab_from_packed_silt_stonecutting.json deleted file mode 100644 index 0e639a80..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_slab_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_shingle_slab_from_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_shingle_slab_from_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_slab_from_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_slab_from_silt_shingle_stonecutting.json deleted file mode 100644 index 6df3fe5e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_slab_from_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_shingle_slab_from_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_shingle_slab_from_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_stairs.json deleted file mode 100644 index e07b7103..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_stairs_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_stairs_from_packed_silt_stonecutting.json deleted file mode 100644 index a9ef42fe..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_stairs_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_shingle_stairs_from_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_shingle_stairs_from_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_stairs_from_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_stairs_from_silt_shingle_stonecutting.json deleted file mode 100644 index b6b0bb55..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_stairs_from_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_shingle_stairs_from_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_shingle_stairs_from_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_wall.json deleted file mode 100644 index d099d76a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_wall_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_wall_from_packed_silt_stonecutting.json deleted file mode 100644 index 2e339649..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_wall_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_shingle_wall_from_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_shingle_wall_from_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_wall_from_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_wall_from_silt_shingle_stonecutting.json deleted file mode 100644 index debd582a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingle_wall_from_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_shingle_wall_from_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_shingle_wall_from_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingles.json deleted file mode 100644 index a87fe1ba..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index 72efb92f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:silt_shingles_from_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:silt_shingles_from_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/white_packed_silt_from_packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/white_packed_silt_from_packed_silt.json deleted file mode 100644 index 41c62989..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/white_packed_silt_from_packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:white_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:white_packed_silt_from_packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/white_packed_silt_from_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/white_packed_silt_from_silt.json deleted file mode 100644 index e1b237fe..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/white_packed_silt_from_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:white_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:white_packed_silt_from_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_pot_from_silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_pot_from_silt_pot.json deleted file mode 100644 index a0824c98..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_pot_from_silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:white_silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_pot" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:white_silt_pot_from_silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_slab.json deleted file mode 100644 index 41a815d2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:white_silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:white_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:white_silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_slab_from_white_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_slab_from_white_packed_silt_stonecutting.json deleted file mode 100644 index 3a6703f2..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_slab_from_white_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:white_silt_shingle_slab_from_white_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:white_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:white_silt_shingle_slab_from_white_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_slab_from_white_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_slab_from_white_silt_shingle_stonecutting.json deleted file mode 100644 index c6443c02..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_slab_from_white_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:white_silt_shingle_slab_from_white_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:white_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:white_silt_shingle_slab_from_white_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_stairs.json deleted file mode 100644 index c4b24af1..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:white_silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:white_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:white_silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_stairs_from_white_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_stairs_from_white_packed_silt_stonecutting.json deleted file mode 100644 index 1fe5a709..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_stairs_from_white_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:white_silt_shingle_stairs_from_white_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:white_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:white_silt_shingle_stairs_from_white_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_stairs_from_white_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_stairs_from_white_silt_shingle_stonecutting.json deleted file mode 100644 index 23dcd759..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_stairs_from_white_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:white_silt_shingle_stairs_from_white_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:white_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:white_silt_shingle_stairs_from_white_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_wall.json deleted file mode 100644 index 516f76bb..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:white_silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:white_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:white_silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_wall_from_white_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_wall_from_white_packed_silt_stonecutting.json deleted file mode 100644 index a0ca9a4b..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_wall_from_white_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:white_silt_shingle_wall_from_white_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:white_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:white_silt_shingle_wall_from_white_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_wall_from_white_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_wall_from_white_silt_shingle_stonecutting.json deleted file mode 100644 index 75beb53b..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingle_wall_from_white_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:white_silt_shingle_wall_from_white_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:white_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:white_silt_shingle_wall_from_white_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingles.json deleted file mode 100644 index bea1054a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:white_silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:white_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:white_silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index 2e10261c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/white_silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:white_silt_shingles_from_white_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:white_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:white_silt_shingles_from_white_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_packed_silt_from_packed_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/yellow_packed_silt_from_packed_silt.json deleted file mode 100644 index ef3a8356..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_packed_silt_from_packed_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:yellow_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:yellow_packed_silt_from_packed_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_packed_silt_from_silt.json b/src/main/resources/data/twigs/advancements/recipes/silt/yellow_packed_silt_from_silt.json deleted file mode 100644 index 6f85150b..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_packed_silt_from_silt.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:yellow_packed_silt" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:yellow_packed_silt_from_silt" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_pot_from_silt_pot.json b/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_pot_from_silt_pot.json deleted file mode 100644 index b663c6ce..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_pot_from_silt_pot.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:yellow_silt_pot" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:silt_pot" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:yellow_silt_pot_from_silt_pot" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_slab.json b/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_slab.json deleted file mode 100644 index 49702d54..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:yellow_silt_shingle_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:yellow_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:yellow_silt_shingle_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_slab_from_yellow_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_slab_from_yellow_packed_silt_stonecutting.json deleted file mode 100644 index 9141dcbf..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_slab_from_yellow_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:yellow_silt_shingle_slab_from_yellow_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:yellow_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:yellow_silt_shingle_slab_from_yellow_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_slab_from_yellow_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_slab_from_yellow_silt_shingle_stonecutting.json deleted file mode 100644 index e0610206..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_slab_from_yellow_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:yellow_silt_shingle_slab_from_yellow_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:yellow_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:yellow_silt_shingle_slab_from_yellow_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_stairs.json b/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_stairs.json deleted file mode 100644 index d3caea0f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:yellow_silt_shingle_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:yellow_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:yellow_silt_shingle_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_stairs_from_yellow_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_stairs_from_yellow_packed_silt_stonecutting.json deleted file mode 100644 index 78bda623..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_stairs_from_yellow_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:yellow_silt_shingle_stairs_from_yellow_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:yellow_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:yellow_silt_shingle_stairs_from_yellow_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_stairs_from_yellow_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_stairs_from_yellow_silt_shingle_stonecutting.json deleted file mode 100644 index aeba8bbf..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_stairs_from_yellow_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:yellow_silt_shingle_stairs_from_yellow_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:yellow_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:yellow_silt_shingle_stairs_from_yellow_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_wall.json b/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_wall.json deleted file mode 100644 index e7d1cdcd..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:yellow_silt_shingle_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:yellow_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:yellow_silt_shingle_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_wall_from_yellow_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_wall_from_yellow_packed_silt_stonecutting.json deleted file mode 100644 index 785d18e0..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_wall_from_yellow_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:yellow_silt_shingle_wall_from_yellow_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:yellow_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:yellow_silt_shingle_wall_from_yellow_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_wall_from_yellow_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_wall_from_yellow_silt_shingle_stonecutting.json deleted file mode 100644 index 5cc824b1..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingle_wall_from_yellow_silt_shingle_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:yellow_silt_shingle_wall_from_yellow_silt_shingle_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:yellow_silt_shingles" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:yellow_silt_shingle_wall_from_yellow_silt_shingle_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingles.json b/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingles.json deleted file mode 100644 index b029a866..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingles.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:yellow_silt_shingles" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:yellow_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:yellow_silt_shingles" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index 14fad3a0..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/silt/yellow_silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:yellow_silt_shingles_from_yellow_packed_silt_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:yellow_packed_silt" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:yellow_silt_shingles_from_yellow_packed_silt_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_slab.json b/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_slab.json deleted file mode 100644 index 1bdbd2cc..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_stone_brick_slab" - ] - }, - "criteria": { - "has_smooth_stone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:smooth_stone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_stone_brick_slab" - } - } - }, - "requirements": [ - [ - "has_smooth_stone_bricks", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_slab_from_smooth_stone_brick_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_slab_from_smooth_stone_brick_stonecutting.json deleted file mode 100644 index b765a047..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_slab_from_smooth_stone_brick_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_stone_brick_slab_from_smooth_stone_brick_stonecutting" - ] - }, - "criteria": { - "has_smooth_stone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:smooth_stone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_stone_brick_slab_from_smooth_stone_brick_stonecutting" - } - } - }, - "requirements": [ - [ - "has_smooth_stone_bricks", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_slab_from_smooth_stone_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_slab_from_smooth_stone_stonecutting.json deleted file mode 100644 index 6302c47f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_slab_from_smooth_stone_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_stone_brick_slab_from_smooth_stone_stonecutting" - ] - }, - "criteria": { - "has_smooth_stone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:smooth_stone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_stone_brick_slab_from_smooth_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_smooth_stone", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_stairs.json b/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_stairs.json deleted file mode 100644 index d02d37a9..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_stone_brick_stairs" - ] - }, - "criteria": { - "has_smooth_stone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:smooth_stone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_stone_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_smooth_stone_bricks", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_stairs_from_smooth_stone_brick_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_stairs_from_smooth_stone_brick_stonecutting.json deleted file mode 100644 index 120dd2d7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_stairs_from_smooth_stone_brick_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_stone_brick_stairs_from_smooth_stone_brick_stonecutting" - ] - }, - "criteria": { - "has_smooth_stone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:smooth_stone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_stone_brick_stairs_from_smooth_stone_brick_stonecutting" - } - } - }, - "requirements": [ - [ - "has_smooth_stone_bricks", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_stairs_from_smooth_stone_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_stairs_from_smooth_stone_stonecutting.json deleted file mode 100644 index ad69575a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_stairs_from_smooth_stone_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_stone_brick_stairs_from_smooth_stone_stonecutting" - ] - }, - "criteria": { - "has_smooth_stone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:smooth_stone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_stone_brick_stairs_from_smooth_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_smooth_stone", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_wall.json b/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_wall.json deleted file mode 100644 index 29c19c99..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_stone_brick_wall" - ] - }, - "criteria": { - "has_smooth_stone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:smooth_stone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_stone_brick_wall" - } - } - }, - "requirements": [ - [ - "has_smooth_stone_bricks", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_wall_from_smooth_stone_brick_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_wall_from_smooth_stone_brick_stonecutting.json deleted file mode 100644 index 7968323a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_wall_from_smooth_stone_brick_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_stone_brick_wall_from_smooth_stone_brick_stonecutting" - ] - }, - "criteria": { - "has_smooth_stone_bricks": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:smooth_stone_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_stone_brick_wall_from_smooth_stone_brick_stonecutting" - } - } - }, - "requirements": [ - [ - "has_smooth_stone_bricks", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_wall_from_smooth_stone_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_wall_from_smooth_stone_stonecutting.json deleted file mode 100644 index 564960d7..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_brick_wall_from_smooth_stone_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_stone_brick_wall_from_smooth_stone_stonecutting" - ] - }, - "criteria": { - "has_smooth_stone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:smooth_stone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_stone_brick_wall_from_smooth_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_smooth_stone", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_bricks.json b/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_bricks.json deleted file mode 100644 index 17dba436..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_stone_bricks" - ] - }, - "criteria": { - "has_smooth_stone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:smooth_stone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_stone_bricks" - } - } - }, - "requirements": [ - [ - "has_smooth_stone", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_bricks_from_smooth_stone_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_bricks_from_smooth_stone_stonecutting.json deleted file mode 100644 index 9f729672..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/smooth_stone_bricks/smooth_stone_bricks_from_smooth_stone_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:smooth_stone_bricks_from_smooth_stone_stonecutting" - ] - }, - "criteria": { - "has_smooth_stone": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:smooth_stone" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:smooth_stone_bricks_from_smooth_stone_stonecutting" - } - } - }, - "requirements": [ - [ - "has_smooth_stone", - "has_the_recipe" - ] - ] -} diff --git a/src/main/resources/data/twigs/advancements/recipes/stick_from_twig.json b/src/main/resources/data/twigs/advancements/recipes/stick_from_twig.json deleted file mode 100644 index 9b194c23..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/stick_from_twig.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:stick_from_twig" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:twig" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:stick_from_twig" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/acacia_table.json b/src/main/resources/data/twigs/advancements/recipes/tables/acacia_table.json deleted file mode 100644 index a22a69b9..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/acacia_table.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:acacia_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:acacia_planks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:acacia_table" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/acacia_table_slab.json b/src/main/resources/data/twigs/advancements/recipes/tables/acacia_table_slab.json deleted file mode 100644 index 3b1b8130..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/acacia_table_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:acacia_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:acacia_slab" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:acacia_table_slab" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/bamboo_table.json b/src/main/resources/data/twigs/advancements/recipes/tables/bamboo_table.json deleted file mode 100644 index fb51f121..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/bamboo_table.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:bamboo_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:bamboo_planks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:bamboo_table" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/bamboo_table_slab.json b/src/main/resources/data/twigs/advancements/recipes/tables/bamboo_table_slab.json deleted file mode 100644 index b3aed2b8..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/bamboo_table_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:bamboo_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:bamboo_slab" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:bamboo_table_slab" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/birch_table.json b/src/main/resources/data/twigs/advancements/recipes/tables/birch_table.json deleted file mode 100644 index cde4bbc5..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/birch_table.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:birch_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:birch_planks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:birch_table" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/birch_table_slab.json b/src/main/resources/data/twigs/advancements/recipes/tables/birch_table_slab.json deleted file mode 100644 index babdb335..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/birch_table_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:birch_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:birch_slab" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:birch_table_slab" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/cherry_table.json b/src/main/resources/data/twigs/advancements/recipes/tables/cherry_table.json deleted file mode 100644 index 9212b601..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/cherry_table.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cherry_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:cherry_planks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cherry_table" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/cherry_table_slab.json b/src/main/resources/data/twigs/advancements/recipes/tables/cherry_table_slab.json deleted file mode 100644 index 03d71b57..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/cherry_table_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cherry_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:cherry_slab" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cherry_table_slab" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/crimson_table.json b/src/main/resources/data/twigs/advancements/recipes/tables/crimson_table.json deleted file mode 100644 index 5e96a832..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/crimson_table.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:crimson_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:crimson_planks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:crimson_table" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/crimson_table_slab.json b/src/main/resources/data/twigs/advancements/recipes/tables/crimson_table_slab.json deleted file mode 100644 index e4dabe17..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/crimson_table_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:crimson_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:crimson_slab" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:crimson_table_slab" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/dark_oak_table.json b/src/main/resources/data/twigs/advancements/recipes/tables/dark_oak_table.json deleted file mode 100644 index c30fb273..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/dark_oak_table.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:dark_oak_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:dark_oak_planks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:dark_oak_table" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/dark_oak_table_slab.json b/src/main/resources/data/twigs/advancements/recipes/tables/dark_oak_table_slab.json deleted file mode 100644 index b205b843..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/dark_oak_table_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:dark_oak_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:dark_oak_slab" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:dark_oak_table_slab" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/jungle_table.json b/src/main/resources/data/twigs/advancements/recipes/tables/jungle_table.json deleted file mode 100644 index 6f9fdbeb..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/jungle_table.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:jungle_table" - ] - }, - "criteria": { - "has_jungle": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:jungle_planks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:jungle_table" - } - } - }, - "requirements": [ - [ - "has_jungle", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/jungle_table_slab.json b/src/main/resources/data/twigs/advancements/recipes/tables/jungle_table_slab.json deleted file mode 100644 index 227886fe..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/jungle_table_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:jungle_table" - ] - }, - "criteria": { - "has_jungle": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:jungle_slab" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:jungle_table_slab" - } - } - }, - "requirements": [ - [ - "has_jungle", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/mangrove_table.json b/src/main/resources/data/twigs/advancements/recipes/tables/mangrove_table.json deleted file mode 100644 index 8fd21741..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/mangrove_table.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mangrove_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:mangrove_planks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mangrove_table" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/mangrove_table_slab.json b/src/main/resources/data/twigs/advancements/recipes/tables/mangrove_table_slab.json deleted file mode 100644 index c041f548..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/mangrove_table_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:mangrove_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:mangrove_slab" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:mangrove_table_slab" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/oak_table.json b/src/main/resources/data/twigs/advancements/recipes/tables/oak_table.json deleted file mode 100644 index 339ff919..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/oak_table.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:oak_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:oak_planks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:oak_table" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/oak_table_slab.json b/src/main/resources/data/twigs/advancements/recipes/tables/oak_table_slab.json deleted file mode 100644 index e627a23b..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/oak_table_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:oak_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:oak_slab" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:oak_table_slab" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/spruce_table.json b/src/main/resources/data/twigs/advancements/recipes/tables/spruce_table.json deleted file mode 100644 index d0705166..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/spruce_table.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:spruce_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:spruce_planks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:spruce_table" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/spruce_table_slab.json b/src/main/resources/data/twigs/advancements/recipes/tables/spruce_table_slab.json deleted file mode 100644 index 1f66da63..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/spruce_table_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:spruce_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:spruce_slab" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:spruce_table_slab" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/warped_table.json b/src/main/resources/data/twigs/advancements/recipes/tables/warped_table.json deleted file mode 100644 index 8dbc228a..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/warped_table.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:warped_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:warped_planks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:warped_table" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tables/warped_table_slab.json b/src/main/resources/data/twigs/advancements/recipes/tables/warped_table_slab.json deleted file mode 100644 index 55a5b089..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tables/warped_table_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:warped_table" - ] - }, - "criteria": { - "has_bamboo": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:warped_slab" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:warped_table_slab" - } - } - }, - "requirements": [ - [ - "has_bamboo", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/cracked_polished_tuff_bricks.json b/src/main/resources/data/twigs/advancements/recipes/tuff/cracked_polished_tuff_bricks.json deleted file mode 100644 index a0792409..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/cracked_polished_tuff_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:cracked_polished_tuff_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_tuff_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:cracked_polished_tuff_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff.json b/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff.json deleted file mode 100644 index c7913493..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_tuff" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:tuff" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_tuff" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_slab.json b/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_slab.json deleted file mode 100644 index c58838ad..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_tuff_brick_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_tuff_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_tuff_brick_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_slab_stonecutting.json deleted file mode 100644 index 3e082f8e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_tuff_brick_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_tuff_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_tuff_brick_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_stairs.json b/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_stairs.json deleted file mode 100644 index 1295fb98..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_tuff_brick_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_tuff_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_tuff_brick_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_stairs_stonecutting.json deleted file mode 100644 index cb757e24..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_tuff_brick_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_tuff_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_tuff_brick_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_wall.json b/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_wall.json deleted file mode 100644 index 609466be..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_tuff_brick_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_tuff_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_tuff_brick_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_wall_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_wall_stonecutting.json deleted file mode 100644 index 884b234c..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_brick_wall_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_tuff_brick_wall_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_tuff_bricks" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_tuff_brick_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_bricks.json b/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_bricks.json deleted file mode 100644 index fae09a66..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_bricks.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_tuff_bricks" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_tuff" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_tuff_bricks" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_bricks_from_bloodstone_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_bricks_from_bloodstone_stonecutting.json deleted file mode 100644 index f8d8a645..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_bricks_from_bloodstone_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_tuff_bricks_from_tuff_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:tuff" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_tuff_bricks_from_tuff_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_bricks_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_bricks_stonecutting.json deleted file mode 100644 index bc82c1a4..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_bricks_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_tuff_bricks_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_tuff" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_tuff_bricks_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_slab.json b/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_slab.json deleted file mode 100644 index 68ebac08..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_tuff_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_tuff" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_tuff_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_slab_stonecutting.json deleted file mode 100644 index ee89e9da..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_tuff_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_tuff" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_tuff_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_stairs.json b/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_stairs.json deleted file mode 100644 index 00650b18..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_tuff_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_tuff" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_tuff_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_stairs_stonecutting.json deleted file mode 100644 index ba9068e6..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_tuff_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "twigs:polished_tuff" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_tuff_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_stonecutting.json deleted file mode 100644 index 2da0932e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/polished_tuff_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:polished_tuff_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:tuff" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:polished_tuff_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_slab.json b/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_slab.json deleted file mode 100644 index e0a9d312..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:tuff_slab" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:tuff" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:tuff_slab" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_slab_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_slab_stonecutting.json deleted file mode 100644 index 01012c86..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_slab_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:tuff_slab_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:tuff" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:tuff_slab_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_stairs.json b/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_stairs.json deleted file mode 100644 index 6ccf069e..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_stairs.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:tuff_stairs" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:tuff" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:tuff_stairs" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_stairs_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_stairs_stonecutting.json deleted file mode 100644 index 7fc3940f..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_stairs_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:tuff_stairs_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:tuff" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:tuff_stairs_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_wall.json b/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_wall.json deleted file mode 100644 index 31f3acc4..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_wall.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:tuff_wall" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:tuff" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:tuff_wall" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_wall_stonecutting.json b/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_wall_stonecutting.json deleted file mode 100644 index 04b71cd4..00000000 --- a/src/main/resources/data/twigs/advancements/recipes/tuff/tuff_wall_stonecutting.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "rewards": { - "recipes": [ - "twigs:tuff_wall_stonecutting" - ] - }, - "criteria": { - "has_item": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:tuff" - ] - } - ] - } - }, - "has_the_recipe": { - "trigger": "minecraft:recipe_unlocked", - "conditions": { - "recipe": "twigs:tuff_wall_stonecutting" - } - } - }, - "requirements": [ - [ - "has_item", - "has_the_recipe" - ] - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/acacia_table.json b/src/main/resources/data/twigs/loot_tables/blocks/acacia_table.json deleted file mode 100644 index c7862bb5..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/acacia_table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:acacia_table" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/allium_paper_lantern.json b/src/main/resources/data/twigs/loot_tables/blocks/allium_paper_lantern.json deleted file mode 100644 index ba0e87fc..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/allium_paper_lantern.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:allium_paper_lantern" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/azalea_flowers.json b/src/main/resources/data/twigs/loot_tables/blocks/azalea_flowers.json deleted file mode 100644 index f9141dc0..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/azalea_flowers.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:azalea_flowers" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/bamboo_leaves.json b/src/main/resources/data/twigs/loot_tables/blocks/bamboo_leaves.json deleted file mode 100644 index fabd3042..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/bamboo_leaves.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "bonus_rolls": 0.0, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "functions": [ - { - "add": true, - "conditions": [ - { - "block": "twigs:bamboo_leaves", - "condition": "minecraft:block_state_property", - "properties": { - "layers": "2" - } - } - ], - "count": 1.0, - "function": "minecraft:set_count" - }, - { - "add": true, - "conditions": [ - { - "block": "twigs:bamboo_leaves", - "condition": "minecraft:block_state_property", - "properties": { - "layers": "3" - } - } - ], - "count": 2.0, - "function": "minecraft:set_count" - }, - { - "add": true, - "conditions": [ - { - "block": "twigs:bamboo_leaves", - "condition": "minecraft:block_state_property", - "properties": { - "layers": "4" - } - } - ], - "count": 3.0, - "function": "minecraft:set_count" - } - ], - "name": "twigs:bamboo_leaves" - } - ] - } - ], - "rolls": 1.0 - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/bamboo_mat.json b/src/main/resources/data/twigs/loot_tables/blocks/bamboo_mat.json deleted file mode 100644 index f3ac3489..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/bamboo_mat.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:bamboo_mat" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/bamboo_table.json b/src/main/resources/data/twigs/loot_tables/blocks/bamboo_table.json deleted file mode 100644 index 7fdefc0f..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/bamboo_table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:bamboo_table" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/birch_table.json b/src/main/resources/data/twigs/loot_tables/blocks/birch_table.json deleted file mode 100644 index c7c3c9b9..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/birch_table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:birch_table" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/black_silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/black_silt_pot.json deleted file mode 100644 index 878d85c9..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/black_silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:black_silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/black_silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/black_silt_shingle_slab.json deleted file mode 100644 index 16444e5b..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/black_silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:black_silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:black_silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/black_silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/black_silt_shingle_stairs.json deleted file mode 100644 index 4f2ec4b0..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/black_silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:black_silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/black_silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/black_silt_shingle_wall.json deleted file mode 100644 index 41a25a61..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/black_silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:black_silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/black_silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/black_silt_shingles.json deleted file mode 100644 index 047e8d8b..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/black_silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:black_silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/blackstone_column.json b/src/main/resources/data/twigs/loot_tables/blocks/blackstone_column.json deleted file mode 100644 index bc6e7af9..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/blackstone_column.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:blackstone_column" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/bloodstone.json b/src/main/resources/data/twigs/loot_tables/blocks/bloodstone.json deleted file mode 100644 index e7f6a1da..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/bloodstone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:bloodstone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/bloodstone_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/bloodstone_slab.json deleted file mode 100644 index 28e1a63a..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/bloodstone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:bloodstone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:bloodstone_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/bloodstone_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/bloodstone_stairs.json deleted file mode 100644 index d073d0d2..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/bloodstone_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:bloodstone_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/bloodstone_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/bloodstone_wall.json deleted file mode 100644 index 96eb41ce..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/bloodstone_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:bloodstone_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/blue_orchid_paper_lantern.json b/src/main/resources/data/twigs/loot_tables/blocks/blue_orchid_paper_lantern.json deleted file mode 100644 index 5fc7c149..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/blue_orchid_paper_lantern.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:blue_orchid_paper_lantern" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/blue_packed_silt.json b/src/main/resources/data/twigs/loot_tables/blocks/blue_packed_silt.json deleted file mode 100644 index 24e1971d..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/blue_packed_silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:blue_packed_silt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/blue_silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/blue_silt_pot.json deleted file mode 100644 index bba8cec8..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/blue_silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:blue_silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/blue_silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/blue_silt_shingle_slab.json deleted file mode 100644 index ab776e16..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/blue_silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:blue_silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:blue_silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/blue_silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/blue_silt_shingle_stairs.json deleted file mode 100644 index 374f1adf..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/blue_silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:blue_silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/blue_silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/blue_silt_shingle_wall.json deleted file mode 100644 index 473335c2..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/blue_silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:blue_silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/blue_silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/blue_silt_shingles.json deleted file mode 100644 index fc47c1db..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/blue_silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:blue_silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/brick_trail.json b/src/main/resources/data/twigs/loot_tables/blocks/brick_trail.json deleted file mode 100644 index 00661cbb..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/brick_trail.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:brick_trail" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/brown_packed_silt.json b/src/main/resources/data/twigs/loot_tables/blocks/brown_packed_silt.json deleted file mode 100644 index b158ce48..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/brown_packed_silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:brown_packed_silt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/brown_silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/brown_silt_pot.json deleted file mode 100644 index 79d17020..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/brown_silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:brown_silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/brown_silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/brown_silt_shingle_slab.json deleted file mode 100644 index 10eedc63..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/brown_silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:brown_silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:brown_silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/brown_silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/brown_silt_shingle_stairs.json deleted file mode 100644 index ac4ca299..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/brown_silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:brown_silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/brown_silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/brown_silt_shingle_wall.json deleted file mode 100644 index c22635c3..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/brown_silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:brown_silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/brown_silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/brown_silt_shingles.json deleted file mode 100644 index fcaa448a..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/brown_silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:brown_silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/calcite_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/calcite_slab.json deleted file mode 100644 index 7584e20d..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/calcite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:calcite_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:calcite_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/calcite_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/calcite_stairs.json deleted file mode 100644 index 97a64380..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/calcite_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:calcite_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/calcite_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/calcite_wall.json deleted file mode 100644 index acf2ea8a..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/calcite_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:calcite_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cherry_table.json b/src/main/resources/data/twigs/loot_tables/blocks/cherry_table.json deleted file mode 100644 index c4e626ec..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cherry_table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cherry_table" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/chiseled_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/chiseled_bricks.json deleted file mode 100644 index 8f7e989d..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/chiseled_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:chiseled_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/chiseled_silt_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/chiseled_silt_bricks.json deleted file mode 100644 index 21e38ec9..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/chiseled_silt_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:chiseled_silt_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/chiseled_smooth_basalt_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/chiseled_smooth_basalt_bricks.json deleted file mode 100644 index 4b076c73..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/chiseled_smooth_basalt_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:chiseled_smooth_basalt_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cobblestone_brick_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/cobblestone_brick_slab.json deleted file mode 100644 index ef5c3e36..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cobblestone_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1.0, - "bonus_rolls": 0.0, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:cobblestone_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2.0, - "add": false - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:cobblestone_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cobblestone_brick_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/cobblestone_brick_stairs.json deleted file mode 100644 index a59b294d..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cobblestone_brick_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cobblestone_brick_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cobblestone_brick_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/cobblestone_brick_wall.json deleted file mode 100644 index a698e473..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cobblestone_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cobblestone_brick_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cobblestone_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/cobblestone_bricks.json deleted file mode 100644 index fb2fb35a..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cobblestone_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cobblestone_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/compacted_dripstone.json b/src/main/resources/data/twigs/loot_tables/blocks/compacted_dripstone.json deleted file mode 100644 index 6f7b11ca..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/compacted_dripstone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:compacted_dripstone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cracked_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/cracked_bricks.json deleted file mode 100644 index fc0dab25..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cracked_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cracked_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cracked_cobblestone_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/cracked_cobblestone_bricks.json deleted file mode 100644 index 3d60b373..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cracked_cobblestone_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cracked_cobblestone_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cracked_polished_bloodstone_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/cracked_polished_bloodstone_bricks.json deleted file mode 100644 index d5ae98a4..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cracked_polished_bloodstone_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cracked_polished_bloodstone_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cracked_polished_calcite_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/cracked_polished_calcite_bricks.json deleted file mode 100644 index 92cfd9e3..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cracked_polished_calcite_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cracked_polished_calcite_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cracked_polished_rhyolite_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/cracked_polished_rhyolite_bricks.json deleted file mode 100644 index 88ae2cb9..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cracked_polished_rhyolite_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cracked_polished_rhyolite_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cracked_polished_schist_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/cracked_polished_schist_bricks.json deleted file mode 100644 index d3b93c35..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cracked_polished_schist_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cracked_polished_schist_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cracked_polished_tuff_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/cracked_polished_tuff_bricks.json deleted file mode 100644 index 1f6a4683..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cracked_polished_tuff_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cracked_polished_tuff_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cracked_silt_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/cracked_silt_bricks.json deleted file mode 100644 index 009b6f7c..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cracked_silt_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cracked_silt_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/crimson_roots_paper_lantern.json b/src/main/resources/data/twigs/loot_tables/blocks/crimson_roots_paper_lantern.json deleted file mode 100644 index 5ec38b6d..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/crimson_roots_paper_lantern.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:crimson_roots_paper_lantern" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/crimson_shroomlamp.json b/src/main/resources/data/twigs/loot_tables/blocks/crimson_shroomlamp.json deleted file mode 100644 index e3cd55b7..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/crimson_shroomlamp.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:crimson_shroomlamp" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/crimson_table.json b/src/main/resources/data/twigs/loot_tables/blocks/crimson_table.json deleted file mode 100644 index 59e35344..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/crimson_table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:crimson_table" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cut_amethyst.json b/src/main/resources/data/twigs/loot_tables/blocks/cut_amethyst.json deleted file mode 100644 index 1a77e183..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cut_amethyst.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cut_amethyst" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cyan_packed_silt.json b/src/main/resources/data/twigs/loot_tables/blocks/cyan_packed_silt.json deleted file mode 100644 index 351c040c..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cyan_packed_silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cyan_packed_silt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cyan_silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/cyan_silt_pot.json deleted file mode 100644 index f4916b03..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cyan_silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cyan_silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cyan_silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/cyan_silt_shingle_slab.json deleted file mode 100644 index 306aa719..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cyan_silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:cyan_silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:cyan_silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cyan_silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/cyan_silt_shingle_stairs.json deleted file mode 100644 index 62b67a14..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cyan_silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cyan_silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cyan_silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/cyan_silt_shingle_wall.json deleted file mode 100644 index a97b6a70..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cyan_silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cyan_silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/cyan_silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/cyan_silt_shingles.json deleted file mode 100644 index b339820b..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/cyan_silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:cyan_silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/dandelion_paper_lantern.json b/src/main/resources/data/twigs/loot_tables/blocks/dandelion_paper_lantern.json deleted file mode 100644 index 6552dac5..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/dandelion_paper_lantern.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:dandelion_paper_lantern" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/dark_oak_table.json b/src/main/resources/data/twigs/loot_tables/blocks/dark_oak_table.json deleted file mode 100644 index 11d35ab7..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/dark_oak_table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:dark_oak_table" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/deepslate_column.json b/src/main/resources/data/twigs/loot_tables/blocks/deepslate_column.json deleted file mode 100644 index d5001df4..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/deepslate_column.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:deepslate_column" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/gravel_brick_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/gravel_brick_slab.json deleted file mode 100644 index 53aa6b03..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/gravel_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:gravel_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:gravel_brick_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/gravel_brick_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/gravel_brick_stairs.json deleted file mode 100644 index 7c61bdd0..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/gravel_brick_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:gravel_brick_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/gravel_brick_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/gravel_brick_wall.json deleted file mode 100644 index d1eeca7b..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/gravel_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:gravel_brick_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/gravel_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/gravel_bricks.json deleted file mode 100644 index 0713b94f..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/gravel_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:gravel_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/gray_packed_silt.json b/src/main/resources/data/twigs/loot_tables/blocks/gray_packed_silt.json deleted file mode 100644 index 93daa334..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/gray_packed_silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:gray_packed_silt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/gray_silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/gray_silt_pot.json deleted file mode 100644 index b02ab4de..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/gray_silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:gray_silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/gray_silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/gray_silt_shingle_slab.json deleted file mode 100644 index 9761cb33..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/gray_silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:gray_silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:gray_silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/gray_silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/gray_silt_shingle_stairs.json deleted file mode 100644 index b512b8cb..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/gray_silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:gray_silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/gray_silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/gray_silt_shingle_wall.json deleted file mode 100644 index 30736738..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/gray_silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:gray_silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/gray_silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/gray_silt_shingles.json deleted file mode 100644 index 39a147ec..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/gray_silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:gray_silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/green_packed_silt.json b/src/main/resources/data/twigs/loot_tables/blocks/green_packed_silt.json deleted file mode 100644 index 9c349e8c..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/green_packed_silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:green_packed_silt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/green_silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/green_silt_pot.json deleted file mode 100644 index 1918cc5e..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/green_silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:green_silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/green_silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/green_silt_shingle_slab.json deleted file mode 100644 index 92d154cc..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/green_silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:green_silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:green_silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/green_silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/green_silt_shingle_stairs.json deleted file mode 100644 index 1cbadc77..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/green_silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:green_silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/green_silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/green_silt_shingle_wall.json deleted file mode 100644 index 80079a26..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/green_silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:green_silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/green_silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/green_silt_shingles.json deleted file mode 100644 index a6e0aba5..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/green_silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:green_silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/jungle_table.json b/src/main/resources/data/twigs/loot_tables/blocks/jungle_table.json deleted file mode 100644 index cd6a50ed..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/jungle_table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:jungle_table" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/lamp.json b/src/main/resources/data/twigs/loot_tables/blocks/lamp.json deleted file mode 100644 index 3b581635..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/lamp.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:lamp" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/light_blue_packed_silt.json b/src/main/resources/data/twigs/loot_tables/blocks/light_blue_packed_silt.json deleted file mode 100644 index 41fb3424..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/light_blue_packed_silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:light_blue_packed_silt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/light_blue_silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/light_blue_silt_pot.json deleted file mode 100644 index d3dda1fb..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/light_blue_silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:light_blue_silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/light_blue_silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/light_blue_silt_shingle_slab.json deleted file mode 100644 index a5862274..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/light_blue_silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:light_blue_silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:light_blue_silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/light_blue_silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/light_blue_silt_shingle_stairs.json deleted file mode 100644 index dc37a958..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/light_blue_silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:light_blue_silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/light_blue_silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/light_blue_silt_shingle_wall.json deleted file mode 100644 index f7309099..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/light_blue_silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:light_blue_silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/light_blue_silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/light_blue_silt_shingles.json deleted file mode 100644 index 5ede0185..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/light_blue_silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:light_blue_silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/light_gray_packed_silt.json b/src/main/resources/data/twigs/loot_tables/blocks/light_gray_packed_silt.json deleted file mode 100644 index 8dae0151..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/light_gray_packed_silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:light_gray_packed_silt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/light_gray_silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/light_gray_silt_pot.json deleted file mode 100644 index 6a5239f3..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/light_gray_silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:light_gray_silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/light_gray_silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/light_gray_silt_shingle_slab.json deleted file mode 100644 index 6114ec32..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/light_gray_silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:light_gray_silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:light_gray_silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/light_gray_silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/light_gray_silt_shingle_stairs.json deleted file mode 100644 index 92551ccf..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/light_gray_silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:light_gray_silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/light_gray_silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/light_gray_silt_shingle_wall.json deleted file mode 100644 index b7b48565..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/light_gray_silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:light_gray_silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/light_gray_silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/light_gray_silt_shingles.json deleted file mode 100644 index 74f7ba71..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/light_gray_silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:light_gray_silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/lime_packed_silt.json b/src/main/resources/data/twigs/loot_tables/blocks/lime_packed_silt.json deleted file mode 100644 index 80110bfe..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/lime_packed_silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:lime_packed_silt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/lime_silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/lime_silt_pot.json deleted file mode 100644 index baa20bd2..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/lime_silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:lime_silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/lime_silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/lime_silt_shingle_slab.json deleted file mode 100644 index 5d5d0671..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/lime_silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:lime_silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:lime_silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/lime_silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/lime_silt_shingle_stairs.json deleted file mode 100644 index a13f4e1a..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/lime_silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:lime_silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/lime_silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/lime_silt_shingle_wall.json deleted file mode 100644 index 5bdbddf0..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/lime_silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:lime_silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/lime_silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/lime_silt_shingles.json deleted file mode 100644 index 957dae4e..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/lime_silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:lime_silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/magenta_packed_silt.json b/src/main/resources/data/twigs/loot_tables/blocks/magenta_packed_silt.json deleted file mode 100644 index 712c7f02..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/magenta_packed_silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:magenta_packed_silt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/magenta_silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/magenta_silt_pot.json deleted file mode 100644 index e50fa64f..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/magenta_silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:magenta_silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/magenta_silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/magenta_silt_shingle_slab.json deleted file mode 100644 index c063826b..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/magenta_silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:magenta_silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:magenta_silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/magenta_silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/magenta_silt_shingle_stairs.json deleted file mode 100644 index 64b3af7b..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/magenta_silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:magenta_silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/magenta_silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/magenta_silt_shingle_wall.json deleted file mode 100644 index 8aa876e2..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/magenta_silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:magenta_silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/magenta_silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/magenta_silt_shingles.json deleted file mode 100644 index 256d7993..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/magenta_silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:magenta_silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/mangrove_table.json b/src/main/resources/data/twigs/loot_tables/blocks/mangrove_table.json deleted file mode 100644 index 231ad46f..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/mangrove_table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:mangrove_table" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/mixed_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/mixed_bricks.json deleted file mode 100644 index f4f88d2d..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/mixed_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:mixed_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/mixed_silt_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/mixed_silt_bricks.json deleted file mode 100644 index d28c1ef0..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/mixed_silt_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:mixed_silt_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/mossy_brick_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/mossy_brick_slab.json deleted file mode 100644 index c299744c..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/mossy_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1.0, - "bonus_rolls": 0.0, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:mossy_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2.0, - "add": false - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:mossy_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/mossy_brick_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/mossy_brick_stairs.json deleted file mode 100644 index 67fd3ec4..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/mossy_brick_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:mossy_brick_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/mossy_brick_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/mossy_brick_wall.json deleted file mode 100644 index 2548270a..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/mossy_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:mossy_brick_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/mossy_cobblestone_brick_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/mossy_cobblestone_brick_slab.json deleted file mode 100644 index 955841fc..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/mossy_cobblestone_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1.0, - "bonus_rolls": 0.0, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:mossy_cobblestone_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2.0, - "add": false - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:mossy_cobblestone_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/mossy_cobblestone_brick_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/mossy_cobblestone_brick_stairs.json deleted file mode 100644 index 94c32d5d..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/mossy_cobblestone_brick_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:mossy_cobblestone_brick_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/mossy_cobblestone_brick_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/mossy_cobblestone_brick_wall.json deleted file mode 100644 index 0a298b78..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/mossy_cobblestone_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:mossy_cobblestone_brick_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/mossy_cobblestone_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/mossy_cobblestone_bricks.json deleted file mode 100644 index 4ef731db..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/mossy_cobblestone_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:mossy_cobblestone_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/oak_table.json b/src/main/resources/data/twigs/loot_tables/blocks/oak_table.json deleted file mode 100644 index 8028c7da..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/oak_table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:oak_table" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/orange_packed_silt.json b/src/main/resources/data/twigs/loot_tables/blocks/orange_packed_silt.json deleted file mode 100644 index dfef56fd..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/orange_packed_silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:orange_packed_silt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/orange_silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/orange_silt_pot.json deleted file mode 100644 index cd3dc342..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/orange_silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:orange_silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/orange_silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/orange_silt_shingle_slab.json deleted file mode 100644 index 11560fd9..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/orange_silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:orange_silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:orange_silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/orange_silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/orange_silt_shingle_stairs.json deleted file mode 100644 index 7ac4689a..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/orange_silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:orange_silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/orange_silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/orange_silt_shingle_wall.json deleted file mode 100644 index 32b1afcc..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/orange_silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:orange_silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/orange_silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/orange_silt_shingles.json deleted file mode 100644 index 8016fbf3..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/orange_silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:orange_silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/packed_silt.json b/src/main/resources/data/twigs/loot_tables/blocks/packed_silt.json deleted file mode 100644 index 06239581..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/packed_silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:packed_silt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/paper_lantern.json b/src/main/resources/data/twigs/loot_tables/blocks/paper_lantern.json deleted file mode 100644 index ae1e49ac..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/paper_lantern.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:paper_lantern" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/pink_packed_silt.json b/src/main/resources/data/twigs/loot_tables/blocks/pink_packed_silt.json deleted file mode 100644 index 7f1a7733..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/pink_packed_silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:pink_packed_silt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/pink_silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/pink_silt_pot.json deleted file mode 100644 index 78be4a65..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/pink_silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:pink_silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/pink_silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/pink_silt_shingle_slab.json deleted file mode 100644 index e8feb85f..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/pink_silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:pink_silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:pink_silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/pink_silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/pink_silt_shingle_stairs.json deleted file mode 100644 index d2d9efb6..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/pink_silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:pink_silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/pink_silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/pink_silt_shingle_wall.json deleted file mode 100644 index c2d971bd..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/pink_silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:pink_silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/pink_silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/pink_silt_shingles.json deleted file mode 100644 index 5ad053eb..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/pink_silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:pink_silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_amethyst.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_amethyst.json deleted file mode 100644 index a0ae9172..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_amethyst.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_amethyst" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_basalt_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_basalt_bricks.json deleted file mode 100644 index 814da13b..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_basalt_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_basalt_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone.json deleted file mode 100644 index 3901f0e4..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_bloodstone" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_brick_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_brick_slab.json deleted file mode 100644 index b95288d4..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:polished_bloodstone_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:polished_bloodstone_brick_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_brick_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_brick_stairs.json deleted file mode 100644 index 39bfc8db..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_brick_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_bloodstone_brick_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_brick_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_brick_wall.json deleted file mode 100644 index 6c09222c..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_bloodstone_brick_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_bricks.json deleted file mode 100644 index b2c822a9..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_bloodstone_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_slab.json deleted file mode 100644 index 88fcb601..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:polished_bloodstone_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:polished_bloodstone_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_stairs.json deleted file mode 100644 index 08844efb..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_bloodstone_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_bloodstone_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite.json deleted file mode 100644 index bbd5b1a4..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_calcite" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_brick_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_brick_slab.json deleted file mode 100644 index 1c8bd316..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:polished_calcite_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:polished_calcite_brick_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_brick_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_brick_stairs.json deleted file mode 100644 index 22b71ffa..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_brick_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_calcite_brick_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_brick_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_brick_wall.json deleted file mode 100644 index 3f35c4ac..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_calcite_brick_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_bricks.json deleted file mode 100644 index 745a6877..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_calcite_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_slab.json deleted file mode 100644 index 9977d8f9..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:polished_calcite_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:polished_calcite_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_stairs.json deleted file mode 100644 index e88f936c..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_calcite_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_calcite_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite.json deleted file mode 100644 index 1861b9d0..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_rhyolite" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_brick_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_brick_slab.json deleted file mode 100644 index edb688a3..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:polished_rhyolite_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:polished_rhyolite_brick_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_brick_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_brick_stairs.json deleted file mode 100644 index 8ee18dfa..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_brick_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_rhyolite_brick_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_brick_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_brick_wall.json deleted file mode 100644 index 4797d2a4..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_rhyolite_brick_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_bricks.json deleted file mode 100644 index eef18850..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_rhyolite_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_slab.json deleted file mode 100644 index 4b32d7a1..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:polished_rhyolite_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:polished_rhyolite_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_stairs.json deleted file mode 100644 index 05b01a42..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_rhyolite_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_rhyolite_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_schist.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_schist.json deleted file mode 100644 index a0363f66..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_schist.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_schist" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_brick_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_brick_slab.json deleted file mode 100644 index 9d48ab2f..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:polished_schist_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:polished_schist_brick_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_brick_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_brick_stairs.json deleted file mode 100644 index 195398d6..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_brick_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_schist_brick_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_brick_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_brick_wall.json deleted file mode 100644 index e61e1f33..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_schist_brick_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_bricks.json deleted file mode 100644 index 2909a3d2..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_schist_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_slab.json deleted file mode 100644 index 732e10a7..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:polished_schist_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:polished_schist_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_stairs.json deleted file mode 100644 index a39b9d7b..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_schist_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_schist_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff.json deleted file mode 100644 index 6d878436..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_tuff" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_brick_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_brick_slab.json deleted file mode 100644 index 6c93e372..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:polished_tuff_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:polished_tuff_brick_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_brick_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_brick_stairs.json deleted file mode 100644 index 6490cbcb..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_brick_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_tuff_brick_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_brick_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_brick_wall.json deleted file mode 100644 index 33de8ae8..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_tuff_brick_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_bricks.json deleted file mode 100644 index d4f088fa..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_tuff_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_slab.json deleted file mode 100644 index f7bc289b..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:polished_tuff_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:polished_tuff_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_stairs.json deleted file mode 100644 index e1fe2c95..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/polished_tuff_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:polished_tuff_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/purple_packed_silt.json b/src/main/resources/data/twigs/loot_tables/blocks/purple_packed_silt.json deleted file mode 100644 index 90f02741..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/purple_packed_silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:purple_packed_silt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/purple_silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/purple_silt_pot.json deleted file mode 100644 index e4b2bbad..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/purple_silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:purple_silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/purple_silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/purple_silt_shingle_slab.json deleted file mode 100644 index 938f8f2d..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/purple_silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:purple_silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:purple_silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/purple_silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/purple_silt_shingle_stairs.json deleted file mode 100644 index 746cc606..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/purple_silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:purple_silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/purple_silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/purple_silt_shingle_wall.json deleted file mode 100644 index c6572a8a..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/purple_silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:purple_silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/purple_silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/purple_silt_shingles.json deleted file mode 100644 index 957cf9d0..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/purple_silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:purple_silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/quartz_column.json b/src/main/resources/data/twigs/loot_tables/blocks/quartz_column.json deleted file mode 100644 index e2172bdd..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/quartz_column.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:quartz_column" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/red_packed_silt.json b/src/main/resources/data/twigs/loot_tables/blocks/red_packed_silt.json deleted file mode 100644 index f95992cf..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/red_packed_silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:red_packed_silt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/red_silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/red_silt_pot.json deleted file mode 100644 index 2057aba6..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/red_silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:red_silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/red_silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/red_silt_shingle_slab.json deleted file mode 100644 index 27ed4c86..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/red_silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:red_silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:red_silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/red_silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/red_silt_shingle_stairs.json deleted file mode 100644 index e04b751c..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/red_silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:red_silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/red_silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/red_silt_shingle_wall.json deleted file mode 100644 index 38f60ab7..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/red_silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:red_silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/red_silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/red_silt_shingles.json deleted file mode 100644 index b083ceb4..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/red_silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:red_silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/rhyolite.json b/src/main/resources/data/twigs/loot_tables/blocks/rhyolite.json deleted file mode 100644 index 3bc7f6fe..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/rhyolite.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:rhyolite" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/rhyolite_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/rhyolite_slab.json deleted file mode 100644 index fa96cb52..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/rhyolite_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:rhyolite_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:rhyolite_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/rhyolite_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/rhyolite_stairs.json deleted file mode 100644 index a6c7fbdc..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/rhyolite_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:rhyolite_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/rhyolite_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/rhyolite_wall.json deleted file mode 100644 index 53c52a44..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/rhyolite_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:rhyolite_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/rocky_dirt.json b/src/main/resources/data/twigs/loot_tables/blocks/rocky_dirt.json deleted file mode 100644 index 0801fadd..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/rocky_dirt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:rocky_dirt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/schist.json b/src/main/resources/data/twigs/loot_tables/blocks/schist.json deleted file mode 100644 index 73e9d878..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/schist.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:schist" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/schist_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/schist_slab.json deleted file mode 100644 index e6b7276a..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/schist_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:schist_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:schist_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/schist_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/schist_stairs.json deleted file mode 100644 index a8f94212..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/schist_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:schist_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/schist_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/schist_wall.json deleted file mode 100644 index e2217d11..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/schist_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:schist_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/silt.json b/src/main/resources/data/twigs/loot_tables/blocks/silt.json deleted file mode 100644 index d5e57cb5..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/silt.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "bonus_rolls": 0.0, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "enchantments": [ - { - "enchantment": "minecraft:silk_touch", - "levels": { - "min": 1 - } - } - ] - } - } - ], - "name": "twigs:silt" - }, - { - "type": "minecraft:item", - "functions": [ - { - "add": false, - "count": 4.0, - "function": "minecraft:set_count" - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:silt_ball" - } - ] - } - ], - "rolls": 1.0 - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/silt_brick_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/silt_brick_slab.json deleted file mode 100644 index d2d41791..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/silt_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:silt_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:silt_brick_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/silt_brick_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/silt_brick_stairs.json deleted file mode 100644 index a5967e6a..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/silt_brick_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:silt_brick_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/silt_brick_trail.json b/src/main/resources/data/twigs/loot_tables/blocks/silt_brick_trail.json deleted file mode 100644 index b41f15b6..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/silt_brick_trail.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:silt_brick_trail" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/silt_brick_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/silt_brick_wall.json deleted file mode 100644 index 931453fa..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/silt_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:silt_brick_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/silt_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/silt_bricks.json deleted file mode 100644 index 68eb10eb..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/silt_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:silt_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/silt_pot.json deleted file mode 100644 index 3fa6d467..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/silt_shingle_slab.json deleted file mode 100644 index 8338a810..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/silt_shingle_stairs.json deleted file mode 100644 index 2d654a24..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/silt_shingle_wall.json deleted file mode 100644 index f959cc98..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/silt_shingles.json deleted file mode 100644 index e070ed40..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/smooth_basalt_brick_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/smooth_basalt_brick_slab.json deleted file mode 100644 index cbc23947..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/smooth_basalt_brick_slab.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1.0, - "bonus_rolls": 0.0, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:smooth_basalt_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2.0, - "add": false - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:smooth_basalt_brick_slab" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/smooth_basalt_brick_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/smooth_basalt_brick_stairs.json deleted file mode 100644 index fcae382d..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/smooth_basalt_brick_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:smooth_basalt_brick_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/smooth_basalt_brick_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/smooth_basalt_brick_wall.json deleted file mode 100644 index 285a88b1..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/smooth_basalt_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:smooth_basalt_brick_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/smooth_basalt_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/smooth_basalt_bricks.json deleted file mode 100644 index 542fc55e..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/smooth_basalt_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:smooth_basalt_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/smooth_stone_brick_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/smooth_stone_brick_slab.json deleted file mode 100644 index 8e1ecb81..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/smooth_stone_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:smooth_stone_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:smooth_stone_brick_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/smooth_stone_brick_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/smooth_stone_brick_stairs.json deleted file mode 100644 index 71584ce8..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/smooth_stone_brick_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:smooth_stone_brick_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/smooth_stone_brick_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/smooth_stone_brick_wall.json deleted file mode 100644 index 8a9867a2..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/smooth_stone_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:smooth_stone_brick_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/smooth_stone_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/smooth_stone_bricks.json deleted file mode 100644 index e940eca9..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/smooth_stone_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:smooth_stone_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/soul_lamp.json b/src/main/resources/data/twigs/loot_tables/blocks/soul_lamp.json deleted file mode 100644 index b847eb0b..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/soul_lamp.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:soul_lamp" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/loot_tables/blocks/spruce_table.json b/src/main/resources/data/twigs/loot_tables/blocks/spruce_table.json deleted file mode 100644 index 60ab8390..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/spruce_table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:spruce_table" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/stone_column.json b/src/main/resources/data/twigs/loot_tables/blocks/stone_column.json deleted file mode 100644 index f6035b11..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/stone_column.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:stone_column" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/torchflower_paper_lantern.json b/src/main/resources/data/twigs/loot_tables/blocks/torchflower_paper_lantern.json deleted file mode 100644 index d81cc046..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/torchflower_paper_lantern.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:torchflower_paper_lantern" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/tuff_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/tuff_slab.json deleted file mode 100644 index a6b6031f..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/tuff_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:tuff_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:tuff_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/tuff_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/tuff_stairs.json deleted file mode 100644 index 428ba4b3..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/tuff_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:tuff_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/tuff_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/tuff_wall.json deleted file mode 100644 index 53fe8d8f..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/tuff_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:tuff_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/twisting_polished_blackstone_brick_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/twisting_polished_blackstone_brick_slab.json deleted file mode 100644 index 17b52c5d..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/twisting_polished_blackstone_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:twisting_polished_blackstone_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:twisting_polished_blackstone_brick_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/twisting_polished_blackstone_brick_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/twisting_polished_blackstone_brick_stairs.json deleted file mode 100644 index a49cde5a..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/twisting_polished_blackstone_brick_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:twisting_polished_blackstone_brick_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/twisting_polished_blackstone_brick_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/twisting_polished_blackstone_brick_wall.json deleted file mode 100644 index 1ef03099..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/twisting_polished_blackstone_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:twisting_polished_blackstone_brick_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/twisting_polished_blackstone_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/twisting_polished_blackstone_bricks.json deleted file mode 100644 index 5b797d08..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/twisting_polished_blackstone_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:twisting_polished_blackstone_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/warped_shroomlamp.json b/src/main/resources/data/twigs/loot_tables/blocks/warped_shroomlamp.json deleted file mode 100644 index 5f9a8b2f..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/warped_shroomlamp.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:warped_shroomlamp" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/warped_table.json b/src/main/resources/data/twigs/loot_tables/blocks/warped_table.json deleted file mode 100644 index 4a44870a..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/warped_table.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:warped_table" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/weeping_polished_blackstone_brick_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/weeping_polished_blackstone_brick_slab.json deleted file mode 100644 index fb347dd9..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/weeping_polished_blackstone_brick_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:weeping_polished_blackstone_brick_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:weeping_polished_blackstone_brick_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/weeping_polished_blackstone_brick_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/weeping_polished_blackstone_brick_stairs.json deleted file mode 100644 index 24aebedc..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/weeping_polished_blackstone_brick_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:weeping_polished_blackstone_brick_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/weeping_polished_blackstone_brick_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/weeping_polished_blackstone_brick_wall.json deleted file mode 100644 index 71d9d0c2..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/weeping_polished_blackstone_brick_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:weeping_polished_blackstone_brick_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/weeping_polished_blackstone_bricks.json b/src/main/resources/data/twigs/loot_tables/blocks/weeping_polished_blackstone_bricks.json deleted file mode 100644 index e31d9149..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/weeping_polished_blackstone_bricks.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:weeping_polished_blackstone_bricks" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/white_packed_silt.json b/src/main/resources/data/twigs/loot_tables/blocks/white_packed_silt.json deleted file mode 100644 index 462cb147..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/white_packed_silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:white_packed_silt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/white_silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/white_silt_pot.json deleted file mode 100644 index a1a1b4ee..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/white_silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:white_silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/white_silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/white_silt_shingle_slab.json deleted file mode 100644 index 88c9c484..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/white_silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:white_silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:white_silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/white_silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/white_silt_shingle_stairs.json deleted file mode 100644 index f447116b..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/white_silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:white_silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/white_silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/white_silt_shingle_wall.json deleted file mode 100644 index faf45bcc..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/white_silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:white_silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/white_silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/white_silt_shingles.json deleted file mode 100644 index 86f29c5f..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/white_silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:white_silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/yellow_packed_silt.json b/src/main/resources/data/twigs/loot_tables/blocks/yellow_packed_silt.json deleted file mode 100644 index 01d222ee..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/yellow_packed_silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:yellow_packed_silt" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/yellow_silt_pot.json b/src/main/resources/data/twigs/loot_tables/blocks/yellow_silt_pot.json deleted file mode 100644 index d443b581..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/yellow_silt_pot.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:yellow_silt_pot" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/yellow_silt_shingle_slab.json b/src/main/resources/data/twigs/loot_tables/blocks/yellow_silt_shingle_slab.json deleted file mode 100644 index 788e2225..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/yellow_silt_shingle_slab.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "functions": [ - { - "function": "minecraft:set_count", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "twigs:yellow_silt_shingle_slab", - "properties": { - "type": "double" - } - } - ], - "count": 2 - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "twigs:yellow_silt_shingle_slab" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/yellow_silt_shingle_stairs.json b/src/main/resources/data/twigs/loot_tables/blocks/yellow_silt_shingle_stairs.json deleted file mode 100644 index 309fb182..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/yellow_silt_shingle_stairs.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:yellow_silt_shingle_stairs" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/yellow_silt_shingle_wall.json b/src/main/resources/data/twigs/loot_tables/blocks/yellow_silt_shingle_wall.json deleted file mode 100644 index 96c4fb51..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/yellow_silt_shingle_wall.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:yellow_silt_shingle_wall" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/blocks/yellow_silt_shingles.json b/src/main/resources/data/twigs/loot_tables/blocks/yellow_silt_shingles.json deleted file mode 100644 index 0a0959ed..00000000 --- a/src/main/resources/data/twigs/loot_tables/blocks/yellow_silt_shingles.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:yellow_silt_shingles" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/loot_tables/chests/bloodstone_obelisk.json b/src/main/resources/data/twigs/loot_tables/chests/bloodstone_obelisk.json deleted file mode 100644 index 6f30175a..00000000 --- a/src/main/resources/data/twigs/loot_tables/chests/bloodstone_obelisk.json +++ /dev/null @@ -1,142 +0,0 @@ -{ - "type": "minecraft:chest", - "pools": [ - { - "rolls": { - "type": "minecraft:uniform", - "min": 0, - "max": 1 - }, - "bonus_rolls": 0, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:crossbow" - } - ] - }, - { - "rolls": { - "type": "minecraft:uniform", - "min": 2, - "max": 3 - }, - "bonus_rolls": 0, - "entries": [] - }, - { - "rolls": { - "type": "minecraft:uniform", - "min": 1, - "max": 3 - }, - "bonus_rolls": 0, - "entries": [ - { - "type": "minecraft:item", - "name": "twigs:bloodstone", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 3 - }, - "add": false - } - ] - } - ] - }, - { - "rolls": { - "type": "minecraft:uniform", - "min": 2, - "max": 3 - }, - "bonus_rolls": 0, - "entries": [ - { - "type": "minecraft:item", - "weight": 7, - "name": "minecraft:experience_bottle", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 8 - } - } - ] - }, - { - "type": "minecraft:item", - "weight": 4, - "name": "minecraft:string", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 1, - "max": 6 - }, - "add": false - } - ] - }, - { - "type": "minecraft:item", - "weight": 4, - "name": "minecraft:arrow", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 7 - }, - "add": false - } - ] - }, - { - "type": "minecraft:item", - "weight": 5, - "name": "minecraft:spectral_arrow", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 6 - }, - "add": false - } - ] - }, - { - "type": "minecraft:item", - "weight": 3, - "name": "minecraft:gold_ingot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 1, - "max": 2 - }, - "add": false - } - ] - } - ] - } - ] -} diff --git a/src/main/resources/data/twigs/recipes/acacia_table.json b/src/main/resources/data/twigs/recipes/acacia_table.json deleted file mode 100644 index 1efe84d6..00000000 --- a/src/main/resources/data/twigs/recipes/acacia_table.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "___", - "O O", - "O O" - ], - "key": { - "_": { - "item": "minecraft:acacia_slab" - }, - "O": { - "item": "minecraft:acacia_fence" - } - }, - "result": { - "item": "twigs:acacia_table", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/allium_paper_lantern.json b/src/main/resources/data/twigs/recipes/allium_paper_lantern.json deleted file mode 100644 index 2791727f..00000000 --- a/src/main/resources/data/twigs/recipes/allium_paper_lantern.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:paper_lantern" - }, - { - "item": "minecraft:allium" - } - ], - "result": { - "item": "twigs:allium_paper_lantern", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/azalea_flowers_from_flowering_azalea.json b/src/main/resources/data/twigs/recipes/azalea_flowers_from_flowering_azalea.json deleted file mode 100644 index 68a85f93..00000000 --- a/src/main/resources/data/twigs/recipes/azalea_flowers_from_flowering_azalea.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:flowering_azalea" - } - ], - "result": { - "item": "twigs:azalea_flowers", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/azalea_flowers_from_flowering_azalea_leaves.json b/src/main/resources/data/twigs/recipes/azalea_flowers_from_flowering_azalea_leaves.json deleted file mode 100644 index 91051f32..00000000 --- a/src/main/resources/data/twigs/recipes/azalea_flowers_from_flowering_azalea_leaves.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:flowering_azalea_leaves" - } - ], - "result": { - "item": "twigs:azalea_flowers", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/bamboo_mat.json b/src/main/resources/data/twigs/recipes/bamboo_mat.json deleted file mode 100644 index 873fb4d2..00000000 --- a/src/main/resources/data/twigs/recipes/bamboo_mat.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - " ", - "###" - ], - "key": { - "#": { - "item": "minecraft:bamboo" - } - }, - "result": { - "item": "twigs:bamboo_mat", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/bamboo_table.json b/src/main/resources/data/twigs/recipes/bamboo_table.json deleted file mode 100644 index bd5106e6..00000000 --- a/src/main/resources/data/twigs/recipes/bamboo_table.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "___", - "O O", - "O O" - ], - "key": { - "_": { - "item": "minecraft:bamboo_slab" - }, - "O": { - "item": "minecraft:bamboo_fence" - } - }, - "result": { - "item": "twigs:bamboo_table", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/bamboo_thatch.json b/src/main/resources/data/twigs/recipes/bamboo_thatch.json deleted file mode 100644 index c6204455..00000000 --- a/src/main/resources/data/twigs/recipes/bamboo_thatch.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:bamboo_leaves" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 2, - "item": "twigs:bamboo_thatch" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/bamboo_thatch_slab.json b/src/main/resources/data/twigs/recipes/bamboo_thatch_slab.json deleted file mode 100644 index f599203b..00000000 --- a/src/main/resources/data/twigs/recipes/bamboo_thatch_slab.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "wooden_slab", - "key": { - "#": { - "item": "twigs:bamboo_thatch" - } - }, - "pattern": [ - "###" - ], - "result": { - "count": 6, - "item": "twigs:bamboo_thatch_slab" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/birch_table.json b/src/main/resources/data/twigs/recipes/birch_table.json deleted file mode 100644 index 1b0bd7b9..00000000 --- a/src/main/resources/data/twigs/recipes/birch_table.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "___", - "O O", - "O O" - ], - "key": { - "_": { - "item": "minecraft:birch_slab" - }, - "O": { - "item": "minecraft:birch_fence" - } - }, - "result": { - "item": "twigs:birch_table", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/black_silt_pot.json b/src/main/resources/data/twigs/recipes/black_silt_pot.json deleted file mode 100644 index c6ae6df1..00000000 --- a/src/main/resources/data/twigs/recipes/black_silt_pot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt_pot" - }, - { - "item": "minecraft:black_dye" - } - ], - "result": { - "item": "twigs:black_silt_pot" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/black_silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/black_silt_shingle_slab.json deleted file mode 100644 index b89e9eb4..00000000 --- a/src/main/resources/data/twigs/recipes/black_silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:black_silt_shingles" - } - }, - "result": { - "item": "twigs:black_silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/black_silt_shingle_slab_from_black_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/black_silt_shingle_slab_from_black_packed_silt_stonecutting.json deleted file mode 100644 index f01b8b68..00000000 --- a/src/main/resources/data/twigs/recipes/black_silt_shingle_slab_from_black_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:black_packed_silt" - }, - "result": "twigs:black_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/black_silt_shingle_slab_from_black_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/black_silt_shingle_slab_from_black_silt_shingle_stonecutting.json deleted file mode 100644 index 8e38f663..00000000 --- a/src/main/resources/data/twigs/recipes/black_silt_shingle_slab_from_black_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:black_silt_shingles" - }, - "result": "twigs:black_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/black_silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/black_silt_shingle_stairs.json deleted file mode 100644 index 2fcdcfbd..00000000 --- a/src/main/resources/data/twigs/recipes/black_silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:black_silt_shingles" - } - }, - "result": { - "item": "twigs:black_silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/black_silt_shingle_stairs_from_black_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/black_silt_shingle_stairs_from_black_packed_silt_stonecutting.json deleted file mode 100644 index c8ad439b..00000000 --- a/src/main/resources/data/twigs/recipes/black_silt_shingle_stairs_from_black_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:black_packed_silt" - }, - "result": "twigs:black_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/black_silt_shingle_stairs_from_black_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/black_silt_shingle_stairs_from_black_silt_shingle_stonecutting.json deleted file mode 100644 index 3906ee36..00000000 --- a/src/main/resources/data/twigs/recipes/black_silt_shingle_stairs_from_black_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:black_silt_shingles" - }, - "result": "twigs:black_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/black_silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/black_silt_shingle_wall.json deleted file mode 100644 index c176a445..00000000 --- a/src/main/resources/data/twigs/recipes/black_silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:black_silt_shingles" - } - }, - "result": { - "item": "twigs:black_silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/black_silt_shingle_wall_from_black_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/black_silt_shingle_wall_from_black_packed_silt_stonecutting.json deleted file mode 100644 index c7b39d0f..00000000 --- a/src/main/resources/data/twigs/recipes/black_silt_shingle_wall_from_black_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:black_packed_silt" - }, - "result": "twigs:black_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/black_silt_shingle_wall_from_black_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/black_silt_shingle_wall_from_black_silt_shingle_stonecutting.json deleted file mode 100644 index f12c3432..00000000 --- a/src/main/resources/data/twigs/recipes/black_silt_shingle_wall_from_black_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:black_silt_shingles" - }, - "result": "twigs:black_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/black_silt_shingles.json b/src/main/resources/data/twigs/recipes/black_silt_shingles.json deleted file mode 100644 index c2e69f0a..00000000 --- a/src/main/resources/data/twigs/recipes/black_silt_shingles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:silt_shingles" - }, - "X": { - "item": "minecraft:black_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:black_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/black_silt_shingles_from_black_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/black_silt_shingles_from_black_packed_silt_stonecutting.json deleted file mode 100644 index 19b779e8..00000000 --- a/src/main/resources/data/twigs/recipes/black_silt_shingles_from_black_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:black_packed_silt" - }, - "result": "twigs:black_silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/black_silt_shingles_from_packed_silt.json b/src/main/resources/data/twigs/recipes/black_silt_shingles_from_packed_silt.json deleted file mode 100644 index 34f10909..00000000 --- a/src/main/resources/data/twigs/recipes/black_silt_shingles_from_packed_silt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:black_packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:black_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/blackstone_column.json b/src/main/resources/data/twigs/recipes/blackstone_column.json deleted file mode 100644 index d646f432..00000000 --- a/src/main/resources/data/twigs/recipes/blackstone_column.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - " # " - ], - "key": { - "#": { - "item": "minecraft:blackstone" - } - }, - "result": { - "item": "twigs:blackstone_column", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/blackstone_column_stonecutting.json b/src/main/resources/data/twigs/recipes/blackstone_column_stonecutting.json deleted file mode 100644 index 82e51d84..00000000 --- a/src/main/resources/data/twigs/recipes/blackstone_column_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:blackstone" - }, - "result": "twigs:blackstone_column", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/bloodstone.json b/src/main/resources/data/twigs/recipes/bloodstone.json deleted file mode 100644 index bf59afdd..00000000 --- a/src/main/resources/data/twigs/recipes/bloodstone.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#I ", - "I# ", - " " - ], - "key": { - "#": { - "item": "minecraft:quartz" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "twigs:bloodstone", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/bloodstone_slab.json b/src/main/resources/data/twigs/recipes/bloodstone_slab.json deleted file mode 100644 index f803d15a..00000000 --- a/src/main/resources/data/twigs/recipes/bloodstone_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:bloodstone" - } - }, - "result": { - "item": "twigs:bloodstone_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/bloodstone_slab_stonecutting.json b/src/main/resources/data/twigs/recipes/bloodstone_slab_stonecutting.json deleted file mode 100644 index 79b2f819..00000000 --- a/src/main/resources/data/twigs/recipes/bloodstone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:bloodstone" - }, - "result": "twigs:bloodstone_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/bloodstone_stairs.json b/src/main/resources/data/twigs/recipes/bloodstone_stairs.json deleted file mode 100644 index 38726430..00000000 --- a/src/main/resources/data/twigs/recipes/bloodstone_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:bloodstone" - } - }, - "result": { - "item": "twigs:bloodstone_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/bloodstone_stairs_stonecutting.json b/src/main/resources/data/twigs/recipes/bloodstone_stairs_stonecutting.json deleted file mode 100644 index d561e088..00000000 --- a/src/main/resources/data/twigs/recipes/bloodstone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:bloodstone" - }, - "result": "twigs:bloodstone_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/bloodstone_wall.json b/src/main/resources/data/twigs/recipes/bloodstone_wall.json deleted file mode 100644 index 2245bc88..00000000 --- a/src/main/resources/data/twigs/recipes/bloodstone_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:bloodstone" - } - }, - "result": { - "item": "twigs:bloodstone_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/bloodstone_wall_stonecutting.json b/src/main/resources/data/twigs/recipes/bloodstone_wall_stonecutting.json deleted file mode 100644 index 0a76d368..00000000 --- a/src/main/resources/data/twigs/recipes/bloodstone_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:bloodstone" - }, - "result": "twigs:bloodstone_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/blue_orchid_paper_lantern.json b/src/main/resources/data/twigs/recipes/blue_orchid_paper_lantern.json deleted file mode 100644 index 88003f20..00000000 --- a/src/main/resources/data/twigs/recipes/blue_orchid_paper_lantern.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:paper_lantern" - }, - { - "item": "minecraft:blue_orchid" - } - ], - "result": { - "item": "twigs:blue_orchid_paper_lantern", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/blue_packed_silt.json b/src/main/resources/data/twigs/recipes/blue_packed_silt.json deleted file mode 100644 index 60d06ddc..00000000 --- a/src/main/resources/data/twigs/recipes/blue_packed_silt.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:packed_silt" - }, - "X": { - "item": "minecraft:blue_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:blue_packed_silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/blue_silt_pot.json b/src/main/resources/data/twigs/recipes/blue_silt_pot.json deleted file mode 100644 index 5c836b72..00000000 --- a/src/main/resources/data/twigs/recipes/blue_silt_pot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt_pot" - }, - { - "item": "minecraft:blue_dye" - } - ], - "result": { - "item": "twigs:blue_silt_pot" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/blue_silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/blue_silt_shingle_slab.json deleted file mode 100644 index 2875aa98..00000000 --- a/src/main/resources/data/twigs/recipes/blue_silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:blue_silt_shingles" - } - }, - "result": { - "item": "twigs:blue_silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/blue_silt_shingle_slab_from_blue_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/blue_silt_shingle_slab_from_blue_packed_silt_stonecutting.json deleted file mode 100644 index b728960a..00000000 --- a/src/main/resources/data/twigs/recipes/blue_silt_shingle_slab_from_blue_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:blue_packed_silt" - }, - "result": "twigs:blue_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/blue_silt_shingle_slab_from_blue_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/blue_silt_shingle_slab_from_blue_silt_shingle_stonecutting.json deleted file mode 100644 index fb417be8..00000000 --- a/src/main/resources/data/twigs/recipes/blue_silt_shingle_slab_from_blue_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:blue_silt_shingles" - }, - "result": "twigs:blue_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/blue_silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/blue_silt_shingle_stairs.json deleted file mode 100644 index 6c46aa64..00000000 --- a/src/main/resources/data/twigs/recipes/blue_silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:blue_silt_shingles" - } - }, - "result": { - "item": "twigs:blue_silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/blue_silt_shingle_stairs_from_blue_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/blue_silt_shingle_stairs_from_blue_packed_silt_stonecutting.json deleted file mode 100644 index f00231fb..00000000 --- a/src/main/resources/data/twigs/recipes/blue_silt_shingle_stairs_from_blue_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:blue_packed_silt" - }, - "result": "twigs:blue_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/blue_silt_shingle_stairs_from_blue_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/blue_silt_shingle_stairs_from_blue_silt_shingle_stonecutting.json deleted file mode 100644 index 2c55b31b..00000000 --- a/src/main/resources/data/twigs/recipes/blue_silt_shingle_stairs_from_blue_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:blue_silt_shingles" - }, - "result": "twigs:blue_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/blue_silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/blue_silt_shingle_wall.json deleted file mode 100644 index 99ce007b..00000000 --- a/src/main/resources/data/twigs/recipes/blue_silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:blue_silt_shingles" - } - }, - "result": { - "item": "twigs:blue_silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/blue_silt_shingle_wall_from_blue_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/blue_silt_shingle_wall_from_blue_packed_silt_stonecutting.json deleted file mode 100644 index b1819fee..00000000 --- a/src/main/resources/data/twigs/recipes/blue_silt_shingle_wall_from_blue_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:blue_packed_silt" - }, - "result": "twigs:blue_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/blue_silt_shingle_wall_from_blue_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/blue_silt_shingle_wall_from_blue_silt_shingle_stonecutting.json deleted file mode 100644 index 4c1c94e1..00000000 --- a/src/main/resources/data/twigs/recipes/blue_silt_shingle_wall_from_blue_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:blue_silt_shingles" - }, - "result": "twigs:blue_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/blue_silt_shingles.json b/src/main/resources/data/twigs/recipes/blue_silt_shingles.json deleted file mode 100644 index 9ae317e8..00000000 --- a/src/main/resources/data/twigs/recipes/blue_silt_shingles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:silt_shingles" - }, - "X": { - "item": "minecraft:blue_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:blue_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/blue_silt_shingles_from_blue_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/blue_silt_shingles_from_blue_packed_silt_stonecutting.json deleted file mode 100644 index 31aaf2bd..00000000 --- a/src/main/resources/data/twigs/recipes/blue_silt_shingles_from_blue_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:blue_packed_silt" - }, - "result": "twigs:blue_silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/blue_silt_shingles_from_packed_silt.json b/src/main/resources/data/twigs/recipes/blue_silt_shingles_from_packed_silt.json deleted file mode 100644 index 46e00fb2..00000000 --- a/src/main/resources/data/twigs/recipes/blue_silt_shingles_from_packed_silt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:blue_packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:blue_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/bone_meal_from_seashells.json b/src/main/resources/data/twigs/recipes/bone_meal_from_seashells.json deleted file mode 100644 index c8573e0d..00000000 --- a/src/main/resources/data/twigs/recipes/bone_meal_from_seashells.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#" - ], - "key": { - "#": { - "tag": "twigs:seashells" - } - }, - "result": { - "item": "minecraft:bone_meal", - "count": 3 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/brick_trail.json b/src/main/resources/data/twigs/recipes/brick_trail.json deleted file mode 100644 index f8b90c18..00000000 --- a/src/main/resources/data/twigs/recipes/brick_trail.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " #", - "# " - ], - "key": { - "#": { - "item": "minecraft:brick" - } - }, - "result": { - "item": "twigs:brick_trail", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/brown_packed_silt.json b/src/main/resources/data/twigs/recipes/brown_packed_silt.json deleted file mode 100644 index 41db41f1..00000000 --- a/src/main/resources/data/twigs/recipes/brown_packed_silt.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:packed_silt" - }, - "X": { - "item": "minecraft:brown_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:brown_packed_silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/brown_silt_pot.json b/src/main/resources/data/twigs/recipes/brown_silt_pot.json deleted file mode 100644 index aafa254e..00000000 --- a/src/main/resources/data/twigs/recipes/brown_silt_pot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt_pot" - }, - { - "item": "minecraft:brown_dye" - } - ], - "result": { - "item": "twigs:brown_silt_pot" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/brown_silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/brown_silt_shingle_slab.json deleted file mode 100644 index 3195519b..00000000 --- a/src/main/resources/data/twigs/recipes/brown_silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:brown_silt_shingles" - } - }, - "result": { - "item": "twigs:brown_silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/brown_silt_shingle_slab_from_brown_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/brown_silt_shingle_slab_from_brown_packed_silt_stonecutting.json deleted file mode 100644 index b980efba..00000000 --- a/src/main/resources/data/twigs/recipes/brown_silt_shingle_slab_from_brown_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:brown_packed_silt" - }, - "result": "twigs:brown_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/brown_silt_shingle_slab_from_brown_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/brown_silt_shingle_slab_from_brown_silt_shingle_stonecutting.json deleted file mode 100644 index 8597d132..00000000 --- a/src/main/resources/data/twigs/recipes/brown_silt_shingle_slab_from_brown_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:brown_silt_shingles" - }, - "result": "twigs:brown_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/brown_silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/brown_silt_shingle_stairs.json deleted file mode 100644 index e69a18ef..00000000 --- a/src/main/resources/data/twigs/recipes/brown_silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:brown_silt_shingles" - } - }, - "result": { - "item": "twigs:brown_silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/brown_silt_shingle_stairs_from_brown_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/brown_silt_shingle_stairs_from_brown_packed_silt_stonecutting.json deleted file mode 100644 index 7f95baa0..00000000 --- a/src/main/resources/data/twigs/recipes/brown_silt_shingle_stairs_from_brown_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:brown_packed_silt" - }, - "result": "twigs:brown_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/brown_silt_shingle_stairs_from_brown_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/brown_silt_shingle_stairs_from_brown_silt_shingle_stonecutting.json deleted file mode 100644 index 70e32e5c..00000000 --- a/src/main/resources/data/twigs/recipes/brown_silt_shingle_stairs_from_brown_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:brown_silt_shingles" - }, - "result": "twigs:brown_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/brown_silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/brown_silt_shingle_wall.json deleted file mode 100644 index c97a53ba..00000000 --- a/src/main/resources/data/twigs/recipes/brown_silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:brown_silt_shingles" - } - }, - "result": { - "item": "twigs:brown_silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/brown_silt_shingle_wall_from_brown_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/brown_silt_shingle_wall_from_brown_packed_silt_stonecutting.json deleted file mode 100644 index 3e6d5ed6..00000000 --- a/src/main/resources/data/twigs/recipes/brown_silt_shingle_wall_from_brown_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:brown_packed_silt" - }, - "result": "twigs:brown_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/brown_silt_shingle_wall_from_brown_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/brown_silt_shingle_wall_from_brown_silt_shingle_stonecutting.json deleted file mode 100644 index 3fa47b61..00000000 --- a/src/main/resources/data/twigs/recipes/brown_silt_shingle_wall_from_brown_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:brown_silt_shingles" - }, - "result": "twigs:brown_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/brown_silt_shingles.json b/src/main/resources/data/twigs/recipes/brown_silt_shingles.json deleted file mode 100644 index b58c2607..00000000 --- a/src/main/resources/data/twigs/recipes/brown_silt_shingles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:silt_shingles" - }, - "X": { - "item": "minecraft:brown_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:brown_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/brown_silt_shingles_from_brown_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/brown_silt_shingles_from_brown_packed_silt_stonecutting.json deleted file mode 100644 index 1549c8c4..00000000 --- a/src/main/resources/data/twigs/recipes/brown_silt_shingles_from_brown_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:brown_packed_silt" - }, - "result": "twigs:brown_silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/brown_silt_shingles_from_packed_silt.json b/src/main/resources/data/twigs/recipes/brown_silt_shingles_from_packed_silt.json deleted file mode 100644 index 938d7b63..00000000 --- a/src/main/resources/data/twigs/recipes/brown_silt_shingles_from_packed_silt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:brown_packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:brown_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/calcite_slab_from_calcite_stonecutting.json b/src/main/resources/data/twigs/recipes/calcite_slab_from_calcite_stonecutting.json deleted file mode 100644 index 66eae3d5..00000000 --- a/src/main/resources/data/twigs/recipes/calcite_slab_from_calcite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:calcite" - }, - "result": "twigs:calcite_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/calcite_stairs.json b/src/main/resources/data/twigs/recipes/calcite_stairs.json deleted file mode 100644 index 5fbf04c2..00000000 --- a/src/main/resources/data/twigs/recipes/calcite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:calcite" - } - }, - "result": { - "item": "twigs:calcite_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/calcite_stairs_from_calcite_stonecutting.json b/src/main/resources/data/twigs/recipes/calcite_stairs_from_calcite_stonecutting.json deleted file mode 100644 index 5ea45d36..00000000 --- a/src/main/resources/data/twigs/recipes/calcite_stairs_from_calcite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:calcite" - }, - "result": "twigs:calcite_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/calcite_wall.json b/src/main/resources/data/twigs/recipes/calcite_wall.json deleted file mode 100644 index 562a98bd..00000000 --- a/src/main/resources/data/twigs/recipes/calcite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:calcite" - } - }, - "result": { - "item": "twigs:calcite_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/calcite_wall_from_calcite_stonecutting.json b/src/main/resources/data/twigs/recipes/calcite_wall_from_calcite_stonecutting.json deleted file mode 100644 index 907f3f76..00000000 --- a/src/main/resources/data/twigs/recipes/calcite_wall_from_calcite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:calcite" - }, - "result": "twigs:calcite_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/cherry_table.json b/src/main/resources/data/twigs/recipes/cherry_table.json deleted file mode 100644 index 5b982032..00000000 --- a/src/main/resources/data/twigs/recipes/cherry_table.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "___", - "O O", - "O O" - ], - "key": { - "_": { - "item": "minecraft:cherry_slab" - }, - "O": { - "item": "minecraft:cherry_fence" - } - }, - "result": { - "item": "twigs:cherry_table", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/chiseled_bricks.json b/src/main/resources/data/twigs/recipes/chiseled_bricks.json deleted file mode 100644 index 2e96c993..00000000 --- a/src/main/resources/data/twigs/recipes/chiseled_bricks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - " _", - " _" - ], - "key": { - "_": { - "item": "minecraft:brick_slab" - } - }, - "result": { - "item": "twigs:chiseled_bricks", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/chiseled_bricks_stonecutting.json b/src/main/resources/data/twigs/recipes/chiseled_bricks_stonecutting.json deleted file mode 100644 index 4459fcbb..00000000 --- a/src/main/resources/data/twigs/recipes/chiseled_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:bricks" - }, - "result": "twigs:chiseled_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/chiseled_silt_bricks.json b/src/main/resources/data/twigs/recipes/chiseled_silt_bricks.json deleted file mode 100644 index 49442730..00000000 --- a/src/main/resources/data/twigs/recipes/chiseled_silt_bricks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - " _", - " _" - ], - "key": { - "_": { - "item": "twigs:silt_brick_slab" - } - }, - "result": { - "item": "twigs:chiseled_silt_bricks", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/chiseled_silt_bricks_stonecutting.json b/src/main/resources/data/twigs/recipes/chiseled_silt_bricks_stonecutting.json deleted file mode 100644 index 1f9d02b3..00000000 --- a/src/main/resources/data/twigs/recipes/chiseled_silt_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:silt_bricks" - }, - "result": "twigs:chiseled_silt_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/chiseled_smooth_basalt_bricks.json b/src/main/resources/data/twigs/recipes/chiseled_smooth_basalt_bricks.json deleted file mode 100644 index 62a0b16c..00000000 --- a/src/main/resources/data/twigs/recipes/chiseled_smooth_basalt_bricks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:smooth_basalt_brick_slab" - } - }, - "pattern": [ - "#", - "#" - ], - "result": { - "item": "twigs:chiseled_smooth_basalt_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/chiseled_smooth_basalt_bricks_stonecutting.json b/src/main/resources/data/twigs/recipes/chiseled_smooth_basalt_bricks_stonecutting.json deleted file mode 100644 index fb1300a7..00000000 --- a/src/main/resources/data/twigs/recipes/chiseled_smooth_basalt_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:smooth_basalt_bricks" - }, - "result": "twigs:chiseled_smooth_basalt_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cobblestone_brick_slab.json b/src/main/resources/data/twigs/recipes/cobblestone_brick_slab.json deleted file mode 100644 index 0cfb334d..00000000 --- a/src/main/resources/data/twigs/recipes/cobblestone_brick_slab.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - " " - ], - "key": { - "#": { - "item": "twigs:cobblestone_bricks" - } - }, - "result": { - "item": "twigs:cobblestone_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cobblestone_brick_slab_from_cobblestone_stonecutting.json b/src/main/resources/data/twigs/recipes/cobblestone_brick_slab_from_cobblestone_stonecutting.json deleted file mode 100644 index d8d0b85e..00000000 --- a/src/main/resources/data/twigs/recipes/cobblestone_brick_slab_from_cobblestone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cobblestone" - }, - "result": "twigs:cobblestone_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cobblestone_brick_slab_stonecutting.json b/src/main/resources/data/twigs/recipes/cobblestone_brick_slab_stonecutting.json deleted file mode 100644 index a07c8d40..00000000 --- a/src/main/resources/data/twigs/recipes/cobblestone_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:cobblestone_bricks" - }, - "result": "twigs:cobblestone_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cobblestone_brick_stairs.json b/src/main/resources/data/twigs/recipes/cobblestone_brick_stairs.json deleted file mode 100644 index c7778575..00000000 --- a/src/main/resources/data/twigs/recipes/cobblestone_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:cobblestone_bricks" - } - }, - "result": { - "item": "twigs:cobblestone_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cobblestone_brick_stairs_from_cobblestone_stonecutting.json b/src/main/resources/data/twigs/recipes/cobblestone_brick_stairs_from_cobblestone_stonecutting.json deleted file mode 100644 index 318e2212..00000000 --- a/src/main/resources/data/twigs/recipes/cobblestone_brick_stairs_from_cobblestone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cobblestone" - }, - "result": "twigs:cobblestone_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cobblestone_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/recipes/cobblestone_brick_stairs_stonecutting.json deleted file mode 100644 index 2dbd3a3b..00000000 --- a/src/main/resources/data/twigs/recipes/cobblestone_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:cobblestone_bricks" - }, - "result": "twigs:cobblestone_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cobblestone_brick_wall.json b/src/main/resources/data/twigs/recipes/cobblestone_brick_wall.json deleted file mode 100644 index c6d08bd8..00000000 --- a/src/main/resources/data/twigs/recipes/cobblestone_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:cobblestone_bricks" - } - }, - "result": { - "item": "twigs:cobblestone_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cobblestone_brick_wall_from_cobblestone_stonecutting.json b/src/main/resources/data/twigs/recipes/cobblestone_brick_wall_from_cobblestone_stonecutting.json deleted file mode 100644 index 00961faf..00000000 --- a/src/main/resources/data/twigs/recipes/cobblestone_brick_wall_from_cobblestone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cobblestone" - }, - "result": "twigs:cobblestone_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cobblestone_brick_wall_stonecutting.json b/src/main/resources/data/twigs/recipes/cobblestone_brick_wall_stonecutting.json deleted file mode 100644 index 1e631ebf..00000000 --- a/src/main/resources/data/twigs/recipes/cobblestone_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:cobblestone_bricks" - }, - "result": "twigs:cobblestone_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cobblestone_bricks.json b/src/main/resources/data/twigs/recipes/cobblestone_bricks.json deleted file mode 100644 index 8733f631..00000000 --- a/src/main/resources/data/twigs/recipes/cobblestone_bricks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "bark", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "minecraft:cobblestone" - } - }, - "result": { - "item": "twigs:cobblestone_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cobblestone_bricks_stonecutting.json b/src/main/resources/data/twigs/recipes/cobblestone_bricks_stonecutting.json deleted file mode 100644 index 8c0eb1cf..00000000 --- a/src/main/resources/data/twigs/recipes/cobblestone_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cobblestone" - }, - "result": "twigs:cobblestone_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cobblestone_from_pebble.json b/src/main/resources/data/twigs/recipes/cobblestone_from_pebble.json deleted file mode 100644 index cdba6b27..00000000 --- a/src/main/resources/data/twigs/recipes/cobblestone_from_pebble.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:pebble" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "item": "minecraft:cobblestone" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/compacted_dripstone.json b/src/main/resources/data/twigs/recipes/compacted_dripstone.json deleted file mode 100644 index 8b64cbf1..00000000 --- a/src/main/resources/data/twigs/recipes/compacted_dripstone.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#", - "#" - ], - "key": { - "#": { - "item": "minecraft:pointed_dripstone" - } - }, - "result": { - "item": "twigs:compacted_dripstone", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/copper_pillar.json b/src/main/resources/data/twigs/recipes/copper_pillar.json deleted file mode 100644 index 340607ae..00000000 --- a/src/main/resources/data/twigs/recipes/copper_pillar.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "minecraft:cut_copper_slab" - } - }, - "pattern": [ - "#", - "#" - ], - "result": { - "item": "twigs:copper_pillar" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/copper_pillar_from_cut_copper_stonecutting.json b/src/main/resources/data/twigs/recipes/copper_pillar_from_cut_copper_stonecutting.json deleted file mode 100644 index 75537b03..00000000 --- a/src/main/resources/data/twigs/recipes/copper_pillar_from_cut_copper_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:cut_copper" - }, - "result": "twigs:copper_pillar", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/copper_pillar_stonecutting.json b/src/main/resources/data/twigs/recipes/copper_pillar_stonecutting.json deleted file mode 100644 index daf42b20..00000000 --- a/src/main/resources/data/twigs/recipes/copper_pillar_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:copper_block" - }, - "result": "twigs:copper_pillar", - "count": 4 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cracked_bricks.json b/src/main/resources/data/twigs/recipes/cracked_bricks.json deleted file mode 100644 index d53558fb..00000000 --- a/src/main/resources/data/twigs/recipes/cracked_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "minecraft:bricks" - }, - "result": "twigs:cracked_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cracked_cobblestone_bricks.json b/src/main/resources/data/twigs/recipes/cracked_cobblestone_bricks.json deleted file mode 100644 index 28e3603c..00000000 --- a/src/main/resources/data/twigs/recipes/cracked_cobblestone_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "twigs:cobblestone_bricks" - }, - "result": "twigs:cracked_cobblestone_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cracked_polished_bloodstone_bricks.json b/src/main/resources/data/twigs/recipes/cracked_polished_bloodstone_bricks.json deleted file mode 100644 index a7ee305d..00000000 --- a/src/main/resources/data/twigs/recipes/cracked_polished_bloodstone_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "twigs:polished_bloodstone_bricks" - }, - "result": "twigs:cracked_polished_bloodstone_bricks", - "experience": 0.1, - "cookingtime": 200 -} diff --git a/src/main/resources/data/twigs/recipes/cracked_polished_calcite_bricks.json b/src/main/resources/data/twigs/recipes/cracked_polished_calcite_bricks.json deleted file mode 100644 index 61b45292..00000000 --- a/src/main/resources/data/twigs/recipes/cracked_polished_calcite_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "twigs:polished_calcite_bricks" - }, - "result": "twigs:cracked_polished_calcite_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cracked_polished_rhyolite_bricks.json b/src/main/resources/data/twigs/recipes/cracked_polished_rhyolite_bricks.json deleted file mode 100644 index 3ce8f4b7..00000000 --- a/src/main/resources/data/twigs/recipes/cracked_polished_rhyolite_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "twigs:polished_rhyolite_bricks" - }, - "result": "twigs:cracked_polished_rhyolite_bricks", - "experience": 0.1, - "cookingtime": 200 -} diff --git a/src/main/resources/data/twigs/recipes/cracked_polished_schist_bricks.json b/src/main/resources/data/twigs/recipes/cracked_polished_schist_bricks.json deleted file mode 100644 index 62b781da..00000000 --- a/src/main/resources/data/twigs/recipes/cracked_polished_schist_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "twigs:polished_schist_bricks" - }, - "result": "twigs:cracked_polished_schist_bricks", - "experience": 0.1, - "cookingtime": 200 -} diff --git a/src/main/resources/data/twigs/recipes/cracked_polished_tuff_bricks.json b/src/main/resources/data/twigs/recipes/cracked_polished_tuff_bricks.json deleted file mode 100644 index 74aba836..00000000 --- a/src/main/resources/data/twigs/recipes/cracked_polished_tuff_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "twigs:polished_tuff_bricks" - }, - "result": "twigs:cracked_polished_tuff_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cracked_silt_bricks.json b/src/main/resources/data/twigs/recipes/cracked_silt_bricks.json deleted file mode 100644 index 63219cef..00000000 --- a/src/main/resources/data/twigs/recipes/cracked_silt_bricks.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "twigs:silt_bricks" - }, - "result": "twigs:cracked_silt_bricks", - "experience": 0.1, - "cookingtime": 200 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/crimson_roots_paper_lantern.json b/src/main/resources/data/twigs/recipes/crimson_roots_paper_lantern.json deleted file mode 100644 index ef5dae43..00000000 --- a/src/main/resources/data/twigs/recipes/crimson_roots_paper_lantern.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:paper_lantern" - }, - { - "item": "minecraft:crimson_roots" - } - ], - "result": { - "item": "twigs:crimson_roots_paper_lantern", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/crimson_shroomlamp.json b/src/main/resources/data/twigs/recipes/crimson_shroomlamp.json deleted file mode 100644 index 6a76402f..00000000 --- a/src/main/resources/data/twigs/recipes/crimson_shroomlamp.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "SSS", - "###" - ], - "key": { - "#": { - "item": "minecraft:crimson_planks" - }, - "S": { - "item": "minecraft:shroomlight" - } - }, - "result": { - "item": "twigs:crimson_shroomlamp", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/crimson_table.json b/src/main/resources/data/twigs/recipes/crimson_table.json deleted file mode 100644 index 9a1b0984..00000000 --- a/src/main/resources/data/twigs/recipes/crimson_table.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "___", - "O O", - "O O" - ], - "key": { - "_": { - "item": "minecraft:crimson_slab" - }, - "O": { - "item": "minecraft:crimson_fence" - } - }, - "result": { - "item": "twigs:crimson_table", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cut_amethyst.json b/src/main/resources/data/twigs/recipes/cut_amethyst.json deleted file mode 100644 index c906ce14..00000000 --- a/src/main/resources/data/twigs/recipes/cut_amethyst.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:polished_amethyst" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:cut_amethyst" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cut_amethyst_from_amethyst_block_stonecutting.json b/src/main/resources/data/twigs/recipes/cut_amethyst_from_amethyst_block_stonecutting.json deleted file mode 100644 index d823774b..00000000 --- a/src/main/resources/data/twigs/recipes/cut_amethyst_from_amethyst_block_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:amethyst_block" - }, - "result": "twigs:cut_amethyst", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/cut_amethyst_stonecutting.json b/src/main/resources/data/twigs/recipes/cut_amethyst_stonecutting.json deleted file mode 100644 index d327f191..00000000 --- a/src/main/resources/data/twigs/recipes/cut_amethyst_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_amethyst" - }, - "result": "twigs:cut_amethyst", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/cyan_packed_silt.json b/src/main/resources/data/twigs/recipes/cyan_packed_silt.json deleted file mode 100644 index f7fa6ccb..00000000 --- a/src/main/resources/data/twigs/recipes/cyan_packed_silt.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:packed_silt" - }, - "X": { - "item": "minecraft:cyan_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:cyan_packed_silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cyan_silt_pot.json b/src/main/resources/data/twigs/recipes/cyan_silt_pot.json deleted file mode 100644 index 00ec660b..00000000 --- a/src/main/resources/data/twigs/recipes/cyan_silt_pot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt_pot" - }, - { - "item": "minecraft:cyan_dye" - } - ], - "result": { - "item": "twigs:cyan_silt_pot" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/cyan_silt_shingle_slab.json deleted file mode 100644 index 5dcabcb5..00000000 --- a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:cyan_silt_shingles" - } - }, - "result": { - "item": "twigs:cyan_silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_slab_from_cyan_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/cyan_silt_shingle_slab_from_cyan_packed_silt_stonecutting.json deleted file mode 100644 index a75adf4e..00000000 --- a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_slab_from_cyan_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:cyan_packed_silt" - }, - "result": "twigs:cyan_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_slab_from_cyan_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/cyan_silt_shingle_slab_from_cyan_silt_shingle_stonecutting.json deleted file mode 100644 index b1ebac07..00000000 --- a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_slab_from_cyan_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:cyan_silt_shingles" - }, - "result": "twigs:cyan_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/cyan_silt_shingle_stairs.json deleted file mode 100644 index fe4a5d7c..00000000 --- a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:cyan_silt_shingles" - } - }, - "result": { - "item": "twigs:cyan_silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_stairs_from_cyan_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/cyan_silt_shingle_stairs_from_cyan_packed_silt_stonecutting.json deleted file mode 100644 index db33d044..00000000 --- a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_stairs_from_cyan_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:cyan_packed_silt" - }, - "result": "twigs:cyan_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_stairs_from_cyan_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/cyan_silt_shingle_stairs_from_cyan_silt_shingle_stonecutting.json deleted file mode 100644 index 7e9b9c49..00000000 --- a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_stairs_from_cyan_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:cyan_silt_shingles" - }, - "result": "twigs:cyan_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/cyan_silt_shingle_wall.json deleted file mode 100644 index 0cebdbcb..00000000 --- a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:cyan_silt_shingles" - } - }, - "result": { - "item": "twigs:cyan_silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_wall_from_cyan_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/cyan_silt_shingle_wall_from_cyan_packed_silt_stonecutting.json deleted file mode 100644 index 4917a9d0..00000000 --- a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_wall_from_cyan_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:cyan_packed_silt" - }, - "result": "twigs:cyan_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_wall_from_cyan_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/cyan_silt_shingle_wall_from_cyan_silt_shingle_stonecutting.json deleted file mode 100644 index 586fc7b6..00000000 --- a/src/main/resources/data/twigs/recipes/cyan_silt_shingle_wall_from_cyan_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:cyan_silt_shingles" - }, - "result": "twigs:cyan_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/cyan_silt_shingles.json b/src/main/resources/data/twigs/recipes/cyan_silt_shingles.json deleted file mode 100644 index 4e95d137..00000000 --- a/src/main/resources/data/twigs/recipes/cyan_silt_shingles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:silt_shingles" - }, - "X": { - "item": "minecraft:cyan_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:cyan_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/cyan_silt_shingles_from_cyan_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/cyan_silt_shingles_from_cyan_packed_silt_stonecutting.json deleted file mode 100644 index 506e7d1c..00000000 --- a/src/main/resources/data/twigs/recipes/cyan_silt_shingles_from_cyan_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:cyan_packed_silt" - }, - "result": "twigs:cyan_silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/cyan_silt_shingles_from_packed_silt.json b/src/main/resources/data/twigs/recipes/cyan_silt_shingles_from_packed_silt.json deleted file mode 100644 index 0d0c7db3..00000000 --- a/src/main/resources/data/twigs/recipes/cyan_silt_shingles_from_packed_silt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:cyan_packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:cyan_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/dandelion_paper_lantern.json b/src/main/resources/data/twigs/recipes/dandelion_paper_lantern.json deleted file mode 100644 index 89c154b1..00000000 --- a/src/main/resources/data/twigs/recipes/dandelion_paper_lantern.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:paper_lantern" - }, - { - "item": "minecraft:dandelion" - } - ], - "result": { - "item": "twigs:dandelion_paper_lantern", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/dark_oak_table.json b/src/main/resources/data/twigs/recipes/dark_oak_table.json deleted file mode 100644 index 72641f62..00000000 --- a/src/main/resources/data/twigs/recipes/dark_oak_table.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "___", - "O O", - "O O" - ], - "key": { - "_": { - "item": "minecraft:dark_oak_slab" - }, - "O": { - "item": "minecraft:dark_oak_fence" - } - }, - "result": { - "item": "twigs:dark_oak_table", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/deepslate_column.json b/src/main/resources/data/twigs/recipes/deepslate_column.json deleted file mode 100644 index d2dc5be7..00000000 --- a/src/main/resources/data/twigs/recipes/deepslate_column.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - " # " - ], - "key": { - "#": { - "item": "minecraft:deepslate" - } - }, - "result": { - "item": "twigs:deepslate_column", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/deepslate_column_stonecutting.json b/src/main/resources/data/twigs/recipes/deepslate_column_stonecutting.json deleted file mode 100644 index 31cfd1c9..00000000 --- a/src/main/resources/data/twigs/recipes/deepslate_column_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:deepslate" - }, - "result": "twigs:deepslate_column", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/exposed_copper_pillar.json b/src/main/resources/data/twigs/recipes/exposed_copper_pillar.json deleted file mode 100644 index fd2a83e2..00000000 --- a/src/main/resources/data/twigs/recipes/exposed_copper_pillar.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "minecraft:exposed_cut_copper_slab" - } - }, - "pattern": [ - "#", - "#" - ], - "result": { - "item": "twigs:exposed_copper_pillar" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/exposed_copper_pillar_from_cut_copper_stonecutting.json b/src/main/resources/data/twigs/recipes/exposed_copper_pillar_from_cut_copper_stonecutting.json deleted file mode 100644 index 546c776f..00000000 --- a/src/main/resources/data/twigs/recipes/exposed_copper_pillar_from_cut_copper_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:exposed_cut_copper" - }, - "result": "twigs:exposed_copper_pillar", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/exposed_copper_pillar_stonecutting.json b/src/main/resources/data/twigs/recipes/exposed_copper_pillar_stonecutting.json deleted file mode 100644 index 8258b407..00000000 --- a/src/main/resources/data/twigs/recipes/exposed_copper_pillar_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:exposed_copper" - }, - "result": "twigs:exposed_copper_pillar", - "count": 4 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/gravel_brick_slab.json b/src/main/resources/data/twigs/recipes/gravel_brick_slab.json deleted file mode 100644 index 2f64944b..00000000 --- a/src/main/resources/data/twigs/recipes/gravel_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:gravel_bricks" - } - }, - "result": { - "item": "twigs:gravel_brick_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/gravel_brick_stairs.json b/src/main/resources/data/twigs/recipes/gravel_brick_stairs.json deleted file mode 100644 index 5857aa0f..00000000 --- a/src/main/resources/data/twigs/recipes/gravel_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:gravel_bricks" - } - }, - "result": { - "item": "twigs:gravel_brick_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/gravel_brick_wall.json b/src/main/resources/data/twigs/recipes/gravel_brick_wall.json deleted file mode 100644 index 686e963c..00000000 --- a/src/main/resources/data/twigs/recipes/gravel_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:gravel_bricks" - } - }, - "result": { - "item": "twigs:gravel_brick_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/gravel_bricks.json b/src/main/resources/data/twigs/recipes/gravel_bricks.json deleted file mode 100644 index 1d33b3af..00000000 --- a/src/main/resources/data/twigs/recipes/gravel_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "minecraft:gravel" - } - }, - "result": { - "item": "twigs:gravel_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/gray_packed_silt.json b/src/main/resources/data/twigs/recipes/gray_packed_silt.json deleted file mode 100644 index b41c3f2f..00000000 --- a/src/main/resources/data/twigs/recipes/gray_packed_silt.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:packed_silt" - }, - "X": { - "item": "minecraft:gray_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:gray_packed_silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/gray_silt_pot.json b/src/main/resources/data/twigs/recipes/gray_silt_pot.json deleted file mode 100644 index 31b1aa36..00000000 --- a/src/main/resources/data/twigs/recipes/gray_silt_pot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt_pot" - }, - { - "item": "minecraft:gray_dye" - } - ], - "result": { - "item": "twigs:gray_silt_pot" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/gray_silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/gray_silt_shingle_slab.json deleted file mode 100644 index ee91296d..00000000 --- a/src/main/resources/data/twigs/recipes/gray_silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:gray_silt_shingles" - } - }, - "result": { - "item": "twigs:gray_silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/gray_silt_shingle_slab_from_gray_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/gray_silt_shingle_slab_from_gray_packed_silt_stonecutting.json deleted file mode 100644 index 0fb36b6d..00000000 --- a/src/main/resources/data/twigs/recipes/gray_silt_shingle_slab_from_gray_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:gray_packed_silt" - }, - "result": "twigs:gray_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/gray_silt_shingle_slab_from_gray_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/gray_silt_shingle_slab_from_gray_silt_shingle_stonecutting.json deleted file mode 100644 index e4c24d36..00000000 --- a/src/main/resources/data/twigs/recipes/gray_silt_shingle_slab_from_gray_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:gray_silt_shingles" - }, - "result": "twigs:gray_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/gray_silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/gray_silt_shingle_stairs.json deleted file mode 100644 index 899bcb05..00000000 --- a/src/main/resources/data/twigs/recipes/gray_silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:gray_silt_shingles" - } - }, - "result": { - "item": "twigs:gray_silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/gray_silt_shingle_stairs_from_gray_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/gray_silt_shingle_stairs_from_gray_packed_silt_stonecutting.json deleted file mode 100644 index 74fcbd1e..00000000 --- a/src/main/resources/data/twigs/recipes/gray_silt_shingle_stairs_from_gray_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:gray_packed_silt" - }, - "result": "twigs:gray_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/gray_silt_shingle_stairs_from_gray_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/gray_silt_shingle_stairs_from_gray_silt_shingle_stonecutting.json deleted file mode 100644 index 0e8abb69..00000000 --- a/src/main/resources/data/twigs/recipes/gray_silt_shingle_stairs_from_gray_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:gray_silt_shingles" - }, - "result": "twigs:gray_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/gray_silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/gray_silt_shingle_wall.json deleted file mode 100644 index 575bf711..00000000 --- a/src/main/resources/data/twigs/recipes/gray_silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:gray_silt_shingles" - } - }, - "result": { - "item": "twigs:gray_silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/gray_silt_shingle_wall_from_gray_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/gray_silt_shingle_wall_from_gray_packed_silt_stonecutting.json deleted file mode 100644 index 341af190..00000000 --- a/src/main/resources/data/twigs/recipes/gray_silt_shingle_wall_from_gray_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:gray_packed_silt" - }, - "result": "twigs:gray_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/gray_silt_shingle_wall_from_gray_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/gray_silt_shingle_wall_from_gray_silt_shingle_stonecutting.json deleted file mode 100644 index 8b81b9b1..00000000 --- a/src/main/resources/data/twigs/recipes/gray_silt_shingle_wall_from_gray_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:gray_silt_shingles" - }, - "result": "twigs:gray_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/gray_silt_shingles.json b/src/main/resources/data/twigs/recipes/gray_silt_shingles.json deleted file mode 100644 index 73f3990b..00000000 --- a/src/main/resources/data/twigs/recipes/gray_silt_shingles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:silt_shingles" - }, - "X": { - "item": "minecraft:gray_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:gray_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/gray_silt_shingles_from_gray_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/gray_silt_shingles_from_gray_packed_silt_stonecutting.json deleted file mode 100644 index 996a8a8f..00000000 --- a/src/main/resources/data/twigs/recipes/gray_silt_shingles_from_gray_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:gray_packed_silt" - }, - "result": "twigs:gray_silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/gray_silt_shingles_from_packed_silt.json b/src/main/resources/data/twigs/recipes/gray_silt_shingles_from_packed_silt.json deleted file mode 100644 index 39863f6b..00000000 --- a/src/main/resources/data/twigs/recipes/gray_silt_shingles_from_packed_silt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:gray_packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:gray_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/green_packed_silt.json b/src/main/resources/data/twigs/recipes/green_packed_silt.json deleted file mode 100644 index 7c3ee2f4..00000000 --- a/src/main/resources/data/twigs/recipes/green_packed_silt.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:packed_silt" - }, - "X": { - "item": "minecraft:green_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:green_packed_silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/green_silt_pot.json b/src/main/resources/data/twigs/recipes/green_silt_pot.json deleted file mode 100644 index d1736f65..00000000 --- a/src/main/resources/data/twigs/recipes/green_silt_pot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt_pot" - }, - { - "item": "minecraft:green_dye" - } - ], - "result": { - "item": "twigs:green_silt_pot" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/green_silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/green_silt_shingle_slab.json deleted file mode 100644 index 131a3898..00000000 --- a/src/main/resources/data/twigs/recipes/green_silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:green_silt_shingles" - } - }, - "result": { - "item": "twigs:green_silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/green_silt_shingle_slab_from_green_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/green_silt_shingle_slab_from_green_packed_silt_stonecutting.json deleted file mode 100644 index b45da0c8..00000000 --- a/src/main/resources/data/twigs/recipes/green_silt_shingle_slab_from_green_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:green_packed_silt" - }, - "result": "twigs:green_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/green_silt_shingle_slab_from_green_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/green_silt_shingle_slab_from_green_silt_shingle_stonecutting.json deleted file mode 100644 index 5d9fc3d3..00000000 --- a/src/main/resources/data/twigs/recipes/green_silt_shingle_slab_from_green_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:green_silt_shingles" - }, - "result": "twigs:green_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/green_silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/green_silt_shingle_stairs.json deleted file mode 100644 index 5ff0efb6..00000000 --- a/src/main/resources/data/twigs/recipes/green_silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:green_silt_shingles" - } - }, - "result": { - "item": "twigs:green_silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/green_silt_shingle_stairs_from_green_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/green_silt_shingle_stairs_from_green_packed_silt_stonecutting.json deleted file mode 100644 index a319271f..00000000 --- a/src/main/resources/data/twigs/recipes/green_silt_shingle_stairs_from_green_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:green_packed_silt" - }, - "result": "twigs:green_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/green_silt_shingle_stairs_from_green_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/green_silt_shingle_stairs_from_green_silt_shingle_stonecutting.json deleted file mode 100644 index 7b660244..00000000 --- a/src/main/resources/data/twigs/recipes/green_silt_shingle_stairs_from_green_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:green_silt_shingles" - }, - "result": "twigs:green_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/green_silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/green_silt_shingle_wall.json deleted file mode 100644 index 2b78a1b8..00000000 --- a/src/main/resources/data/twigs/recipes/green_silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:green_silt_shingles" - } - }, - "result": { - "item": "twigs:green_silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/green_silt_shingle_wall_from_green_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/green_silt_shingle_wall_from_green_packed_silt_stonecutting.json deleted file mode 100644 index 8d8c5673..00000000 --- a/src/main/resources/data/twigs/recipes/green_silt_shingle_wall_from_green_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:green_packed_silt" - }, - "result": "twigs:green_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/green_silt_shingle_wall_from_green_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/green_silt_shingle_wall_from_green_silt_shingle_stonecutting.json deleted file mode 100644 index 2ef94e93..00000000 --- a/src/main/resources/data/twigs/recipes/green_silt_shingle_wall_from_green_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:green_silt_shingles" - }, - "result": "twigs:green_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/green_silt_shingles.json b/src/main/resources/data/twigs/recipes/green_silt_shingles.json deleted file mode 100644 index a9dbe692..00000000 --- a/src/main/resources/data/twigs/recipes/green_silt_shingles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:silt_shingles" - }, - "X": { - "item": "minecraft:green_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:green_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/green_silt_shingles_from_green_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/green_silt_shingles_from_green_packed_silt_stonecutting.json deleted file mode 100644 index 16557bf2..00000000 --- a/src/main/resources/data/twigs/recipes/green_silt_shingles_from_green_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:green_packed_silt" - }, - "result": "twigs:green_silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/green_silt_shingles_from_packed_silt.json b/src/main/resources/data/twigs/recipes/green_silt_shingles_from_packed_silt.json deleted file mode 100644 index 2383e80c..00000000 --- a/src/main/resources/data/twigs/recipes/green_silt_shingles_from_packed_silt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:green_packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:green_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/jungle_table.json b/src/main/resources/data/twigs/recipes/jungle_table.json deleted file mode 100644 index 38959324..00000000 --- a/src/main/resources/data/twigs/recipes/jungle_table.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "___", - "O O", - "O O" - ], - "key": { - "_": { - "item": "minecraft:jungle_slab" - }, - "O": { - "item": "minecraft:jungle_fence" - } - }, - "result": { - "item": "twigs:jungle_table", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/lamp.json b/src/main/resources/data/twigs/recipes/lamp.json deleted file mode 100644 index a8ac2ccc..00000000 --- a/src/main/resources/data/twigs/recipes/lamp.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "iii", - "iTi", - "iCi" - ], - "key": { - "i": { - "item": "minecraft:iron_ingot" - }, - "T": { - "item": "minecraft:torch" - }, - "C": { - "item": "minecraft:coal" - } - }, - "result": { - "item": "twigs:lamp", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/light_blue_packed_silt.json b/src/main/resources/data/twigs/recipes/light_blue_packed_silt.json deleted file mode 100644 index 7c2fe54a..00000000 --- a/src/main/resources/data/twigs/recipes/light_blue_packed_silt.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:packed_silt" - }, - "X": { - "item": "minecraft:light_blue_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:light_blue_packed_silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/light_blue_silt_pot.json b/src/main/resources/data/twigs/recipes/light_blue_silt_pot.json deleted file mode 100644 index 2773440d..00000000 --- a/src/main/resources/data/twigs/recipes/light_blue_silt_pot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt_pot" - }, - { - "item": "minecraft:light_blue_dye" - } - ], - "result": { - "item": "twigs:light_blue_silt_pot" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_slab.json deleted file mode 100644 index 3033ca87..00000000 --- a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:light_blue_silt_shingles" - } - }, - "result": { - "item": "twigs:light_blue_silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_slab_from_light_blue_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_slab_from_light_blue_packed_silt_stonecutting.json deleted file mode 100644 index 2421ce76..00000000 --- a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_slab_from_light_blue_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:light_blue_packed_silt" - }, - "result": "twigs:light_blue_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_slab_from_light_blue_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_slab_from_light_blue_silt_shingle_stonecutting.json deleted file mode 100644 index 9243aaa3..00000000 --- a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_slab_from_light_blue_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:light_blue_silt_shingles" - }, - "result": "twigs:light_blue_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_stairs.json deleted file mode 100644 index fcd80fde..00000000 --- a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:light_blue_silt_shingles" - } - }, - "result": { - "item": "twigs:light_blue_silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_stairs_from_light_blue_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_stairs_from_light_blue_packed_silt_stonecutting.json deleted file mode 100644 index 4e54a279..00000000 --- a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_stairs_from_light_blue_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:light_blue_packed_silt" - }, - "result": "twigs:light_blue_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_stairs_from_light_blue_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_stairs_from_light_blue_silt_shingle_stonecutting.json deleted file mode 100644 index 3742221c..00000000 --- a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_stairs_from_light_blue_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:light_blue_silt_shingles" - }, - "result": "twigs:light_blue_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_wall.json deleted file mode 100644 index 9d302fc4..00000000 --- a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:light_blue_silt_shingles" - } - }, - "result": { - "item": "twigs:light_blue_silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_wall_from_light_blue_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_wall_from_light_blue_packed_silt_stonecutting.json deleted file mode 100644 index 381dba3a..00000000 --- a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_wall_from_light_blue_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:light_blue_packed_silt" - }, - "result": "twigs:light_blue_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_wall_from_light_blue_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_wall_from_light_blue_silt_shingle_stonecutting.json deleted file mode 100644 index c9412aa1..00000000 --- a/src/main/resources/data/twigs/recipes/light_blue_silt_shingle_wall_from_light_blue_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:light_blue_silt_shingles" - }, - "result": "twigs:light_blue_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/light_blue_silt_shingles.json b/src/main/resources/data/twigs/recipes/light_blue_silt_shingles.json deleted file mode 100644 index 5e90d187..00000000 --- a/src/main/resources/data/twigs/recipes/light_blue_silt_shingles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:silt_shingles" - }, - "X": { - "item": "minecraft:light_blue_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:light_blue_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/light_blue_silt_shingles_from_light_blue_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/light_blue_silt_shingles_from_light_blue_packed_silt_stonecutting.json deleted file mode 100644 index 6c0e2c33..00000000 --- a/src/main/resources/data/twigs/recipes/light_blue_silt_shingles_from_light_blue_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:light_blue_packed_silt" - }, - "result": "twigs:light_blue_silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/light_blue_silt_shingles_from_packed_silt.json b/src/main/resources/data/twigs/recipes/light_blue_silt_shingles_from_packed_silt.json deleted file mode 100644 index 34d44f0f..00000000 --- a/src/main/resources/data/twigs/recipes/light_blue_silt_shingles_from_packed_silt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:light_blue_packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:light_blue_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/light_gray_packed_silt.json b/src/main/resources/data/twigs/recipes/light_gray_packed_silt.json deleted file mode 100644 index ed7648b3..00000000 --- a/src/main/resources/data/twigs/recipes/light_gray_packed_silt.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:packed_silt" - }, - "X": { - "item": "minecraft:light_gray_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:light_gray_packed_silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/light_gray_silt_pot.json b/src/main/resources/data/twigs/recipes/light_gray_silt_pot.json deleted file mode 100644 index 2d5389c2..00000000 --- a/src/main/resources/data/twigs/recipes/light_gray_silt_pot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt_pot" - }, - { - "item": "minecraft:light_gray_dye" - } - ], - "result": { - "item": "twigs:light_gray_silt_pot" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_slab.json deleted file mode 100644 index 158fa8a2..00000000 --- a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:light_gray_silt_shingles" - } - }, - "result": { - "item": "twigs:light_gray_silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_slab_from_light_gray_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_slab_from_light_gray_packed_silt_stonecutting.json deleted file mode 100644 index c8d78176..00000000 --- a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_slab_from_light_gray_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:light_gray_packed_silt" - }, - "result": "twigs:light_gray_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_slab_from_light_gray_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_slab_from_light_gray_silt_shingle_stonecutting.json deleted file mode 100644 index 750e9b77..00000000 --- a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_slab_from_light_gray_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:light_gray_silt_shingles" - }, - "result": "twigs:light_gray_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_stairs.json deleted file mode 100644 index 0907f143..00000000 --- a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:light_gray_silt_shingles" - } - }, - "result": { - "item": "twigs:light_gray_silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_stairs_from_light_gray_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_stairs_from_light_gray_packed_silt_stonecutting.json deleted file mode 100644 index 1c43f045..00000000 --- a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_stairs_from_light_gray_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:light_gray_packed_silt" - }, - "result": "twigs:light_gray_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_stairs_from_light_gray_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_stairs_from_light_gray_silt_shingle_stonecutting.json deleted file mode 100644 index 9c8cc926..00000000 --- a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_stairs_from_light_gray_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:light_gray_silt_shingles" - }, - "result": "twigs:light_gray_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_wall.json deleted file mode 100644 index 3ebfb85c..00000000 --- a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:light_gray_silt_shingles" - } - }, - "result": { - "item": "twigs:light_gray_silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_wall_from_light_gray_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_wall_from_light_gray_packed_silt_stonecutting.json deleted file mode 100644 index 61a75beb..00000000 --- a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_wall_from_light_gray_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:light_gray_packed_silt" - }, - "result": "twigs:light_gray_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_wall_from_light_gray_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_wall_from_light_gray_silt_shingle_stonecutting.json deleted file mode 100644 index 380075fa..00000000 --- a/src/main/resources/data/twigs/recipes/light_gray_silt_shingle_wall_from_light_gray_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:light_gray_silt_shingles" - }, - "result": "twigs:light_gray_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/light_gray_silt_shingles.json b/src/main/resources/data/twigs/recipes/light_gray_silt_shingles.json deleted file mode 100644 index f528c398..00000000 --- a/src/main/resources/data/twigs/recipes/light_gray_silt_shingles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:silt_shingles" - }, - "X": { - "item": "minecraft:light_gray_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:light_gray_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/light_gray_silt_shingles_from_light_gray_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/light_gray_silt_shingles_from_light_gray_packed_silt_stonecutting.json deleted file mode 100644 index de2d2bdc..00000000 --- a/src/main/resources/data/twigs/recipes/light_gray_silt_shingles_from_light_gray_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:light_gray_packed_silt" - }, - "result": "twigs:light_gray_silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/light_gray_silt_shingles_from_packed_silt.json b/src/main/resources/data/twigs/recipes/light_gray_silt_shingles_from_packed_silt.json deleted file mode 100644 index f1ff012c..00000000 --- a/src/main/resources/data/twigs/recipes/light_gray_silt_shingles_from_packed_silt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:light_gray_packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:light_gray_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/lime_packed_silt.json b/src/main/resources/data/twigs/recipes/lime_packed_silt.json deleted file mode 100644 index d8acfa90..00000000 --- a/src/main/resources/data/twigs/recipes/lime_packed_silt.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:packed_silt" - }, - "X": { - "item": "minecraft:lime_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:lime_packed_silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/lime_silt_pot.json b/src/main/resources/data/twigs/recipes/lime_silt_pot.json deleted file mode 100644 index 984d1a02..00000000 --- a/src/main/resources/data/twigs/recipes/lime_silt_pot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt_pot" - }, - { - "item": "minecraft:lime_dye" - } - ], - "result": { - "item": "twigs:lime_silt_pot" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/lime_silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/lime_silt_shingle_slab.json deleted file mode 100644 index 3291537e..00000000 --- a/src/main/resources/data/twigs/recipes/lime_silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:lime_silt_shingles" - } - }, - "result": { - "item": "twigs:lime_silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/lime_silt_shingle_slab_from_lime_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/lime_silt_shingle_slab_from_lime_packed_silt_stonecutting.json deleted file mode 100644 index ff118836..00000000 --- a/src/main/resources/data/twigs/recipes/lime_silt_shingle_slab_from_lime_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:lime_packed_silt" - }, - "result": "twigs:lime_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/lime_silt_shingle_slab_from_lime_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/lime_silt_shingle_slab_from_lime_silt_shingle_stonecutting.json deleted file mode 100644 index 697c8cb3..00000000 --- a/src/main/resources/data/twigs/recipes/lime_silt_shingle_slab_from_lime_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:lime_silt_shingles" - }, - "result": "twigs:lime_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/lime_silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/lime_silt_shingle_stairs.json deleted file mode 100644 index 9a68df35..00000000 --- a/src/main/resources/data/twigs/recipes/lime_silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:lime_silt_shingles" - } - }, - "result": { - "item": "twigs:lime_silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/lime_silt_shingle_stairs_from_lime_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/lime_silt_shingle_stairs_from_lime_packed_silt_stonecutting.json deleted file mode 100644 index 08f1ff07..00000000 --- a/src/main/resources/data/twigs/recipes/lime_silt_shingle_stairs_from_lime_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:lime_packed_silt" - }, - "result": "twigs:lime_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/lime_silt_shingle_stairs_from_lime_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/lime_silt_shingle_stairs_from_lime_silt_shingle_stonecutting.json deleted file mode 100644 index 13f1eeed..00000000 --- a/src/main/resources/data/twigs/recipes/lime_silt_shingle_stairs_from_lime_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:lime_silt_shingles" - }, - "result": "twigs:lime_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/lime_silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/lime_silt_shingle_wall.json deleted file mode 100644 index 9cc87497..00000000 --- a/src/main/resources/data/twigs/recipes/lime_silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:lime_silt_shingles" - } - }, - "result": { - "item": "twigs:lime_silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/lime_silt_shingle_wall_from_lime_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/lime_silt_shingle_wall_from_lime_packed_silt_stonecutting.json deleted file mode 100644 index 65ee4b03..00000000 --- a/src/main/resources/data/twigs/recipes/lime_silt_shingle_wall_from_lime_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:lime_packed_silt" - }, - "result": "twigs:lime_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/lime_silt_shingle_wall_from_lime_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/lime_silt_shingle_wall_from_lime_silt_shingle_stonecutting.json deleted file mode 100644 index dc2624f4..00000000 --- a/src/main/resources/data/twigs/recipes/lime_silt_shingle_wall_from_lime_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:lime_silt_shingles" - }, - "result": "twigs:lime_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/lime_silt_shingles.json b/src/main/resources/data/twigs/recipes/lime_silt_shingles.json deleted file mode 100644 index 55c2f955..00000000 --- a/src/main/resources/data/twigs/recipes/lime_silt_shingles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:silt_shingles" - }, - "X": { - "item": "minecraft:lime_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:lime_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/lime_silt_shingles_from_lime_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/lime_silt_shingles_from_lime_packed_silt_stonecutting.json deleted file mode 100644 index 92e77a7f..00000000 --- a/src/main/resources/data/twigs/recipes/lime_silt_shingles_from_lime_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:lime_packed_silt" - }, - "result": "twigs:lime_silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/lime_silt_shingles_from_packed_silt.json b/src/main/resources/data/twigs/recipes/lime_silt_shingles_from_packed_silt.json deleted file mode 100644 index f46f9f07..00000000 --- a/src/main/resources/data/twigs/recipes/lime_silt_shingles_from_packed_silt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:lime_packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:lime_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/magenta_packed_silt.json b/src/main/resources/data/twigs/recipes/magenta_packed_silt.json deleted file mode 100644 index 60839e83..00000000 --- a/src/main/resources/data/twigs/recipes/magenta_packed_silt.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:packed_silt" - }, - "X": { - "item": "minecraft:magenta_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:magenta_packed_silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/magenta_silt_pot.json b/src/main/resources/data/twigs/recipes/magenta_silt_pot.json deleted file mode 100644 index a8ed9559..00000000 --- a/src/main/resources/data/twigs/recipes/magenta_silt_pot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt_pot" - }, - { - "item": "minecraft:magenta_dye" - } - ], - "result": { - "item": "twigs:magenta_silt_pot" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/magenta_silt_shingle_slab.json deleted file mode 100644 index e20fd957..00000000 --- a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:magenta_silt_shingles" - } - }, - "result": { - "item": "twigs:magenta_silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_slab_from_magenta_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/magenta_silt_shingle_slab_from_magenta_packed_silt_stonecutting.json deleted file mode 100644 index b58e0c4d..00000000 --- a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_slab_from_magenta_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:magenta_packed_silt" - }, - "result": "twigs:magenta_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_slab_from_magenta_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/magenta_silt_shingle_slab_from_magenta_silt_shingle_stonecutting.json deleted file mode 100644 index f04cc85e..00000000 --- a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_slab_from_magenta_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:magenta_silt_shingles" - }, - "result": "twigs:magenta_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/magenta_silt_shingle_stairs.json deleted file mode 100644 index c9c78346..00000000 --- a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:magenta_silt_shingles" - } - }, - "result": { - "item": "twigs:magenta_silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_stairs_from_magenta_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/magenta_silt_shingle_stairs_from_magenta_packed_silt_stonecutting.json deleted file mode 100644 index 038c8759..00000000 --- a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_stairs_from_magenta_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:magenta_packed_silt" - }, - "result": "twigs:magenta_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_stairs_from_magenta_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/magenta_silt_shingle_stairs_from_magenta_silt_shingle_stonecutting.json deleted file mode 100644 index 48d4860b..00000000 --- a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_stairs_from_magenta_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:magenta_silt_shingles" - }, - "result": "twigs:magenta_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/magenta_silt_shingle_wall.json deleted file mode 100644 index 4cd5c69a..00000000 --- a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:magenta_silt_shingles" - } - }, - "result": { - "item": "twigs:magenta_silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_wall_from_magenta_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/magenta_silt_shingle_wall_from_magenta_packed_silt_stonecutting.json deleted file mode 100644 index 9f4e4751..00000000 --- a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_wall_from_magenta_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:magenta_packed_silt" - }, - "result": "twigs:magenta_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_wall_from_magenta_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/magenta_silt_shingle_wall_from_magenta_silt_shingle_stonecutting.json deleted file mode 100644 index 3c9762bc..00000000 --- a/src/main/resources/data/twigs/recipes/magenta_silt_shingle_wall_from_magenta_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:magenta_silt_shingles" - }, - "result": "twigs:magenta_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/magenta_silt_shingles.json b/src/main/resources/data/twigs/recipes/magenta_silt_shingles.json deleted file mode 100644 index efbf1749..00000000 --- a/src/main/resources/data/twigs/recipes/magenta_silt_shingles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:silt_shingles" - }, - "X": { - "item": "minecraft:magenta_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:magenta_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/magenta_silt_shingles_from_magenta_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/magenta_silt_shingles_from_magenta_packed_silt_stonecutting.json deleted file mode 100644 index 4a8e1f8b..00000000 --- a/src/main/resources/data/twigs/recipes/magenta_silt_shingles_from_magenta_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:magenta_packed_silt" - }, - "result": "twigs:magenta_silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/magenta_silt_shingles_from_packed_silt.json b/src/main/resources/data/twigs/recipes/magenta_silt_shingles_from_packed_silt.json deleted file mode 100644 index 102ac28f..00000000 --- a/src/main/resources/data/twigs/recipes/magenta_silt_shingles_from_packed_silt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:magenta_packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:magenta_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mangrove_table.json b/src/main/resources/data/twigs/recipes/mangrove_table.json deleted file mode 100644 index 575747d7..00000000 --- a/src/main/resources/data/twigs/recipes/mangrove_table.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "___", - "O O", - "O O" - ], - "key": { - "_": { - "item": "minecraft:mangrove_slab" - }, - "O": { - "item": "minecraft:mangrove_fence" - } - }, - "result": { - "item": "twigs:mangrove_table", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mixed_bricks.json b/src/main/resources/data/twigs/recipes/mixed_bricks.json deleted file mode 100644 index f74f000a..00000000 --- a/src/main/resources/data/twigs/recipes/mixed_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "minecraft:bricks" - } - }, - "result": { - "item": "twigs:mixed_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mixed_bricks_stonecutting.json b/src/main/resources/data/twigs/recipes/mixed_bricks_stonecutting.json deleted file mode 100644 index bf5f0d32..00000000 --- a/src/main/resources/data/twigs/recipes/mixed_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:bricks" - }, - "result": "twigs:mixed_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mixed_silt_bricks.json b/src/main/resources/data/twigs/recipes/mixed_silt_bricks.json deleted file mode 100644 index 2e89eb5c..00000000 --- a/src/main/resources/data/twigs/recipes/mixed_silt_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "twigs:silt_bricks" - } - }, - "result": { - "item": "twigs:mixed_silt_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mixed_silt_bricks_stonecutting.json b/src/main/resources/data/twigs/recipes/mixed_silt_bricks_stonecutting.json deleted file mode 100644 index cb86ca8f..00000000 --- a/src/main/resources/data/twigs/recipes/mixed_silt_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:silt_bricks" - }, - "result": "twigs:mixed_silt_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_brick_slab.json b/src/main/resources/data/twigs/recipes/mossy_brick_slab.json deleted file mode 100644 index 811431fe..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_brick_slab.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - " " - ], - "key": { - "#": { - "item": "twigs:mossy_bricks" - } - }, - "result": { - "item": "twigs:mossy_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_brick_slab_stonecutting.json b/src/main/resources/data/twigs/recipes/mossy_brick_slab_stonecutting.json deleted file mode 100644 index 4ed98724..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:mossy_bricks" - }, - "result": "twigs:mossy_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_brick_stairs.json b/src/main/resources/data/twigs/recipes/mossy_brick_stairs.json deleted file mode 100644 index 19f2d9cc..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:mossy_bricks" - } - }, - "result": { - "item": "twigs:mossy_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/recipes/mossy_brick_stairs_stonecutting.json deleted file mode 100644 index 52daa396..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:mossy_bricks" - }, - "result": "twigs:mossy_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_brick_wall.json b/src/main/resources/data/twigs/recipes/mossy_brick_wall.json deleted file mode 100644 index c593ca90..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:mossy_bricks" - } - }, - "result": { - "item": "twigs:mossy_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_brick_wall_stonecutting.json b/src/main/resources/data/twigs/recipes/mossy_brick_wall_stonecutting.json deleted file mode 100644 index 94e72073..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:mossy_bricks" - }, - "result": "twigs:mossy_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_bricks_from_moss_block.json b/src/main/resources/data/twigs/recipes/mossy_bricks_from_moss_block.json deleted file mode 100644 index d3002559..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_bricks_from_moss_block.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:bricks" - }, - { - "item": "minecraft:moss_block" - } - ], - "result": { - "item": "twigs:mossy_bricks", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_bricks_from_vine.json b/src/main/resources/data/twigs/recipes/mossy_bricks_from_vine.json deleted file mode 100644 index 43bbc2e1..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_bricks_from_vine.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:bricks" - }, - { - "item": "minecraft:vine" - } - ], - "result": { - "item": "twigs:mossy_bricks", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_slab.json b/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_slab.json deleted file mode 100644 index e825ff56..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_slab.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - " " - ], - "key": { - "#": { - "item": "twigs:mossy_cobblestone_bricks" - } - }, - "result": { - "item": "twigs:mossy_cobblestone_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_slab_from_mossy_cobblestone_stonecutting.json b/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_slab_from_mossy_cobblestone_stonecutting.json deleted file mode 100644 index 46c726d0..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_slab_from_mossy_cobblestone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:mossy_cobblestone" - }, - "result": "twigs:mossy_cobblestone_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_slab_stonecutting.json b/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_slab_stonecutting.json deleted file mode 100644 index 9f62896a..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:mossy_cobblestone_bricks" - }, - "result": "twigs:mossy_cobblestone_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_stairs.json b/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_stairs.json deleted file mode 100644 index c92787e1..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:mossy_cobblestone_bricks" - } - }, - "result": { - "item": "twigs:mossy_cobblestone_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_stairs_from_mossy_cobblestone_stonecutting.json b/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_stairs_from_mossy_cobblestone_stonecutting.json deleted file mode 100644 index cbb6d388..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_stairs_from_mossy_cobblestone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:mossy_cobblestone" - }, - "result": "twigs:mossy_cobblestone_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_stairs_stonecutting.json deleted file mode 100644 index 9df5f6be..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:mossy_cobblestone_bricks" - }, - "result": "twigs:mossy_cobblestone_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_wall.json b/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_wall.json deleted file mode 100644 index d5e7d369..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:mossy_cobblestone_bricks" - } - }, - "result": { - "item": "twigs:mossy_cobblestone_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_wall_from_mossy_cobblestone_stonecutting.json b/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_wall_from_mossy_cobblestone_stonecutting.json deleted file mode 100644 index be393111..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_wall_from_mossy_cobblestone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:mossy_cobblestone" - }, - "result": "twigs:mossy_cobblestone_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_wall_stonecutting.json b/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_wall_stonecutting.json deleted file mode 100644 index 93fc1b31..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_cobblestone_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:mossy_cobblestone_bricks" - }, - "result": "twigs:mossy_cobblestone_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_cobblestone_bricks.json b/src/main/resources/data/twigs/recipes/mossy_cobblestone_bricks.json deleted file mode 100644 index ef8c3e2c..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_cobblestone_bricks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:cobblestone_bricks" - }, - { - "item": "minecraft:moss_block" - } - ], - "result": { - "item": "twigs:mossy_cobblestone_bricks", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_cobblestone_bricks_cobblestone.json b/src/main/resources/data/twigs/recipes/mossy_cobblestone_bricks_cobblestone.json deleted file mode 100644 index e4e2520c..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_cobblestone_bricks_cobblestone.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "bark", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "minecraft:mossy_cobblestone" - } - }, - "result": { - "item": "twigs:mossy_cobblestone_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/mossy_cobblestone_bricks_stonecutting.json b/src/main/resources/data/twigs/recipes/mossy_cobblestone_bricks_stonecutting.json deleted file mode 100644 index 5c3fbf40..00000000 --- a/src/main/resources/data/twigs/recipes/mossy_cobblestone_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:mossy_cobblestone" - }, - "result": "twigs:mossy_cobblestone_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/oak_table.json b/src/main/resources/data/twigs/recipes/oak_table.json deleted file mode 100644 index 8739e411..00000000 --- a/src/main/resources/data/twigs/recipes/oak_table.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "___", - "O O", - "O O" - ], - "key": { - "_": { - "item": "minecraft:oak_slab" - }, - "O": { - "item": "minecraft:oak_fence" - } - }, - "result": { - "item": "twigs:oak_table", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/orange_packed_silt.json b/src/main/resources/data/twigs/recipes/orange_packed_silt.json deleted file mode 100644 index b875c4e2..00000000 --- a/src/main/resources/data/twigs/recipes/orange_packed_silt.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:packed_silt" - }, - "X": { - "item": "minecraft:orange_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:orange_packed_silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/orange_silt_pot.json b/src/main/resources/data/twigs/recipes/orange_silt_pot.json deleted file mode 100644 index c47765d1..00000000 --- a/src/main/resources/data/twigs/recipes/orange_silt_pot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt_pot" - }, - { - "item": "minecraft:orange_dye" - } - ], - "result": { - "item": "twigs:orange_silt_pot" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/orange_silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/orange_silt_shingle_slab.json deleted file mode 100644 index 9fb79e3f..00000000 --- a/src/main/resources/data/twigs/recipes/orange_silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:orange_silt_shingles" - } - }, - "result": { - "item": "twigs:orange_silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/orange_silt_shingle_slab_from_orange_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/orange_silt_shingle_slab_from_orange_packed_silt_stonecutting.json deleted file mode 100644 index 323fe2ae..00000000 --- a/src/main/resources/data/twigs/recipes/orange_silt_shingle_slab_from_orange_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:orange_packed_silt" - }, - "result": "twigs:orange_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/orange_silt_shingle_slab_from_orange_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/orange_silt_shingle_slab_from_orange_silt_shingle_stonecutting.json deleted file mode 100644 index 5dbd8453..00000000 --- a/src/main/resources/data/twigs/recipes/orange_silt_shingle_slab_from_orange_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:orange_silt_shingles" - }, - "result": "twigs:orange_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/orange_silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/orange_silt_shingle_stairs.json deleted file mode 100644 index b031b9dd..00000000 --- a/src/main/resources/data/twigs/recipes/orange_silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:orange_silt_shingles" - } - }, - "result": { - "item": "twigs:orange_silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/orange_silt_shingle_stairs_from_orange_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/orange_silt_shingle_stairs_from_orange_packed_silt_stonecutting.json deleted file mode 100644 index fb17f81f..00000000 --- a/src/main/resources/data/twigs/recipes/orange_silt_shingle_stairs_from_orange_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:orange_packed_silt" - }, - "result": "twigs:orange_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/orange_silt_shingle_stairs_from_orange_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/orange_silt_shingle_stairs_from_orange_silt_shingle_stonecutting.json deleted file mode 100644 index c9615084..00000000 --- a/src/main/resources/data/twigs/recipes/orange_silt_shingle_stairs_from_orange_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:orange_silt_shingles" - }, - "result": "twigs:orange_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/orange_silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/orange_silt_shingle_wall.json deleted file mode 100644 index 15ba58b0..00000000 --- a/src/main/resources/data/twigs/recipes/orange_silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:orange_silt_shingles" - } - }, - "result": { - "item": "twigs:orange_silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/orange_silt_shingle_wall_from_orange_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/orange_silt_shingle_wall_from_orange_packed_silt_stonecutting.json deleted file mode 100644 index 6e1490e4..00000000 --- a/src/main/resources/data/twigs/recipes/orange_silt_shingle_wall_from_orange_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:orange_packed_silt" - }, - "result": "twigs:orange_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/orange_silt_shingle_wall_from_orange_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/orange_silt_shingle_wall_from_orange_silt_shingle_stonecutting.json deleted file mode 100644 index 2935f01c..00000000 --- a/src/main/resources/data/twigs/recipes/orange_silt_shingle_wall_from_orange_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:orange_silt_shingles" - }, - "result": "twigs:orange_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/orange_silt_shingles.json b/src/main/resources/data/twigs/recipes/orange_silt_shingles.json deleted file mode 100644 index b3792d9d..00000000 --- a/src/main/resources/data/twigs/recipes/orange_silt_shingles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:silt_shingles" - }, - "X": { - "item": "minecraft:orange_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:orange_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/orange_silt_shingles_from_orange_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/orange_silt_shingles_from_orange_packed_silt_stonecutting.json deleted file mode 100644 index 91ada0f4..00000000 --- a/src/main/resources/data/twigs/recipes/orange_silt_shingles_from_orange_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:orange_packed_silt" - }, - "result": "twigs:orange_silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/orange_silt_shingles_from_packed_silt.json b/src/main/resources/data/twigs/recipes/orange_silt_shingles_from_packed_silt.json deleted file mode 100644 index 1ac7b12b..00000000 --- a/src/main/resources/data/twigs/recipes/orange_silt_shingles_from_packed_silt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:orange_packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:orange_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/oxidized_copper_pillar.json b/src/main/resources/data/twigs/recipes/oxidized_copper_pillar.json deleted file mode 100644 index c3b23ec7..00000000 --- a/src/main/resources/data/twigs/recipes/oxidized_copper_pillar.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "minecraft:oxidized_cut_copper_slab" - } - }, - "pattern": [ - "#", - "#" - ], - "result": { - "item": "twigs:oxidized_copper_pillar" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/oxidized_copper_pillar_from_cut_copper_stonecutting.json b/src/main/resources/data/twigs/recipes/oxidized_copper_pillar_from_cut_copper_stonecutting.json deleted file mode 100644 index 22c927e7..00000000 --- a/src/main/resources/data/twigs/recipes/oxidized_copper_pillar_from_cut_copper_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:oxidized_cut_copper" - }, - "result": "twigs:oxidized_copper_pillar", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/oxidized_copper_pillar_stonecutting.json b/src/main/resources/data/twigs/recipes/oxidized_copper_pillar_stonecutting.json deleted file mode 100644 index 44e95ae8..00000000 --- a/src/main/resources/data/twigs/recipes/oxidized_copper_pillar_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:oxidized_copper" - }, - "result": "twigs:oxidized_copper_pillar", - "count": 4 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/packed_silt.json b/src/main/resources/data/twigs/recipes/packed_silt.json deleted file mode 100644 index 7d6f7aa4..00000000 --- a/src/main/resources/data/twigs/recipes/packed_silt.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt" - }, - { - "item": "minecraft:wheat" - } - ], - "result": { - "item": "twigs:packed_silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/paper_lantern.json b/src/main/resources/data/twigs/recipes/paper_lantern.json deleted file mode 100644 index f5e34ab7..00000000 --- a/src/main/resources/data/twigs/recipes/paper_lantern.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "#T#", - "###" - ], - "key": { - "#": { - "item": "minecraft:paper" - }, - "T": { - "item": "minecraft:torch" - } - }, - "result": { - "item": "twigs:paper_lantern", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/pink_packed_silt.json b/src/main/resources/data/twigs/recipes/pink_packed_silt.json deleted file mode 100644 index 93388e06..00000000 --- a/src/main/resources/data/twigs/recipes/pink_packed_silt.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:packed_silt" - }, - "X": { - "item": "minecraft:pink_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:pink_packed_silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/pink_silt_pot.json b/src/main/resources/data/twigs/recipes/pink_silt_pot.json deleted file mode 100644 index a5c119d2..00000000 --- a/src/main/resources/data/twigs/recipes/pink_silt_pot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt_pot" - }, - { - "item": "minecraft:pink_dye" - } - ], - "result": { - "item": "twigs:pink_silt_pot" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/pink_silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/pink_silt_shingle_slab.json deleted file mode 100644 index 73fadae5..00000000 --- a/src/main/resources/data/twigs/recipes/pink_silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:pink_silt_shingles" - } - }, - "result": { - "item": "twigs:pink_silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/pink_silt_shingle_slab_from_pink_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/pink_silt_shingle_slab_from_pink_packed_silt_stonecutting.json deleted file mode 100644 index 2a450eb6..00000000 --- a/src/main/resources/data/twigs/recipes/pink_silt_shingle_slab_from_pink_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:pink_packed_silt" - }, - "result": "twigs:pink_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/pink_silt_shingle_slab_from_pink_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/pink_silt_shingle_slab_from_pink_silt_shingle_stonecutting.json deleted file mode 100644 index ce662c24..00000000 --- a/src/main/resources/data/twigs/recipes/pink_silt_shingle_slab_from_pink_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:pink_silt_shingles" - }, - "result": "twigs:pink_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/pink_silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/pink_silt_shingle_stairs.json deleted file mode 100644 index 9a1ea992..00000000 --- a/src/main/resources/data/twigs/recipes/pink_silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:pink_silt_shingles" - } - }, - "result": { - "item": "twigs:pink_silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/pink_silt_shingle_stairs_from_pink_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/pink_silt_shingle_stairs_from_pink_packed_silt_stonecutting.json deleted file mode 100644 index 3550024f..00000000 --- a/src/main/resources/data/twigs/recipes/pink_silt_shingle_stairs_from_pink_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:pink_packed_silt" - }, - "result": "twigs:pink_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/pink_silt_shingle_stairs_from_pink_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/pink_silt_shingle_stairs_from_pink_silt_shingle_stonecutting.json deleted file mode 100644 index fa70085b..00000000 --- a/src/main/resources/data/twigs/recipes/pink_silt_shingle_stairs_from_pink_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:pink_silt_shingles" - }, - "result": "twigs:pink_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/pink_silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/pink_silt_shingle_wall.json deleted file mode 100644 index 80336fb2..00000000 --- a/src/main/resources/data/twigs/recipes/pink_silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:pink_silt_shingles" - } - }, - "result": { - "item": "twigs:pink_silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/pink_silt_shingle_wall_from_pink_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/pink_silt_shingle_wall_from_pink_packed_silt_stonecutting.json deleted file mode 100644 index 8c61bf76..00000000 --- a/src/main/resources/data/twigs/recipes/pink_silt_shingle_wall_from_pink_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:pink_packed_silt" - }, - "result": "twigs:pink_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/pink_silt_shingle_wall_from_pink_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/pink_silt_shingle_wall_from_pink_silt_shingle_stonecutting.json deleted file mode 100644 index f70c5ec9..00000000 --- a/src/main/resources/data/twigs/recipes/pink_silt_shingle_wall_from_pink_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:pink_silt_shingles" - }, - "result": "twigs:pink_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/pink_silt_shingles.json b/src/main/resources/data/twigs/recipes/pink_silt_shingles.json deleted file mode 100644 index 479f2fd4..00000000 --- a/src/main/resources/data/twigs/recipes/pink_silt_shingles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:silt_shingles" - }, - "X": { - "item": "minecraft:pink_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:pink_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/pink_silt_shingles_from_packed_silt.json b/src/main/resources/data/twigs/recipes/pink_silt_shingles_from_packed_silt.json deleted file mode 100644 index e3440918..00000000 --- a/src/main/resources/data/twigs/recipes/pink_silt_shingles_from_packed_silt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:pink_packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:pink_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/pink_silt_shingles_from_pink_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/pink_silt_shingles_from_pink_packed_silt_stonecutting.json deleted file mode 100644 index eb8b71e1..00000000 --- a/src/main/resources/data/twigs/recipes/pink_silt_shingles_from_pink_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:pink_packed_silt" - }, - "result": "twigs:pink_silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_amethyst.json b/src/main/resources/data/twigs/recipes/polished_amethyst.json deleted file mode 100644 index c6483b07..00000000 --- a/src/main/resources/data/twigs/recipes/polished_amethyst.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "minecraft:amethyst_block" - } - }, - "result": { - "item": "twigs:polished_amethyst", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_amethyst_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_amethyst_stonecutting.json deleted file mode 100644 index 294226a2..00000000 --- a/src/main/resources/data/twigs/recipes/polished_amethyst_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:amethyst_block" - }, - "result": "twigs:polished_amethyst", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_basalt_bricks.json b/src/main/resources/data/twigs/recipes/polished_basalt_bricks.json deleted file mode 100644 index 53f30978..00000000 --- a/src/main/resources/data/twigs/recipes/polished_basalt_bricks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "bark", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "minecraft:polished_basalt" - } - }, - "result": { - "item": "twigs:polished_basalt_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_basalt_bricks_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_basalt_bricks_stonecutting.json deleted file mode 100644 index 078c174c..00000000 --- a/src/main/resources/data/twigs/recipes/polished_basalt_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:polished_basalt" - }, - "result": "twigs:polished_basalt_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone.json b/src/main/resources/data/twigs/recipes/polished_bloodstone.json deleted file mode 100644 index a15f2a62..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "twigs:bloodstone" - } - }, - "result": { - "item": "twigs:polished_bloodstone", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_slab.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_slab.json deleted file mode 100644 index 3818ab92..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:polished_bloodstone_bricks" - } - }, - "result": { - "item": "twigs:polished_bloodstone_brick_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_slab_from_bloodstone_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_slab_from_bloodstone_stonecutting.json deleted file mode 100644 index f7b2e72f..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_slab_from_bloodstone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:bloodstone" - }, - "result": "twigs:polished_bloodstone_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_slab_from_polished_bloodstone_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_slab_from_polished_bloodstone_stonecutting.json deleted file mode 100644 index b8396d4d..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_slab_from_polished_bloodstone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_bloodstone" - }, - "result": "twigs:polished_bloodstone_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_slab_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_slab_stonecutting.json deleted file mode 100644 index d387f031..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_bloodstone_bricks" - }, - "result": "twigs:polished_bloodstone_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_stairs.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_stairs.json deleted file mode 100644 index 0b4072c3..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:polished_bloodstone_bricks" - } - }, - "result": { - "item": "twigs:polished_bloodstone_brick_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_stairs_from_bloodstone_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_stairs_from_bloodstone_stonecutting.json deleted file mode 100644 index 554eb0de..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_stairs_from_bloodstone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:bloodstone" - }, - "result": "twigs:polished_bloodstone_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_stairs_from_polished_bloodstone_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_stairs_from_polished_bloodstone_stonecutting.json deleted file mode 100644 index 7b115bf9..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_stairs_from_polished_bloodstone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_bloodstone" - }, - "result": "twigs:polished_bloodstone_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_stairs_stonecutting.json deleted file mode 100644 index 6b90eab8..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_bloodstone_bricks" - }, - "result": "twigs:polished_bloodstone_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_wall.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_wall.json deleted file mode 100644 index bddf5a27..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:polished_bloodstone_bricks" - } - }, - "result": { - "item": "twigs:polished_bloodstone_brick_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_wall_from_bloodstone_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_wall_from_bloodstone_stonecutting.json deleted file mode 100644 index 0261691a..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_wall_from_bloodstone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:bloodstone" - }, - "result": "twigs:polished_bloodstone_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_wall_from_polished_bloodstone_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_wall_from_polished_bloodstone_stonecutting.json deleted file mode 100644 index 62a9c320..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_wall_from_polished_bloodstone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_bloodstone" - }, - "result": "twigs:polished_bloodstone_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_wall_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_wall_stonecutting.json deleted file mode 100644 index 64b6de24..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_bloodstone_bricks" - }, - "result": "twigs:polished_bloodstone_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_bricks.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_bricks.json deleted file mode 100644 index 903e4d02..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_bricks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "bark", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "twigs:polished_bloodstone" - } - }, - "result": { - "item": "twigs:polished_bloodstone_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_bricks_from_bloodstone_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_bricks_from_bloodstone_stonecutting.json deleted file mode 100644 index c4971b21..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_bricks_from_bloodstone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:bloodstone" - }, - "result": "twigs:polished_bloodstone_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_bricks_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_bricks_stonecutting.json deleted file mode 100644 index 2a002cf5..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_bloodstone" - }, - "result": "twigs:polished_bloodstone_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_slab.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_slab.json deleted file mode 100644 index 65be5e5b..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:polished_bloodstone" - } - }, - "result": { - "item": "twigs:polished_bloodstone_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_slab_from_bloodstone_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_slab_from_bloodstone_stonecutting.json deleted file mode 100644 index e7351e68..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_slab_from_bloodstone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:bloodstone" - }, - "result": "twigs:polished_bloodstone_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_slab_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_slab_stonecutting.json deleted file mode 100644 index 81bbabc2..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_bloodstone" - }, - "result": "twigs:polished_bloodstone_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_stairs.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_stairs.json deleted file mode 100644 index a857e116..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:polished_bloodstone" - } - }, - "result": { - "item": "twigs:polished_bloodstone_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_stairs_from_bloodstone_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_stairs_from_bloodstone_stonecutting.json deleted file mode 100644 index 68ec3d7d..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_stairs_from_bloodstone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:bloodstone" - }, - "result": "twigs:polished_bloodstone_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_stairs_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_stairs_stonecutting.json deleted file mode 100644 index 57ecb7b6..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_bloodstone" - }, - "result": "twigs:polished_bloodstone_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_bloodstone_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_bloodstone_stonecutting.json deleted file mode 100644 index 9097dc61..00000000 --- a/src/main/resources/data/twigs/recipes/polished_bloodstone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:bloodstone" - }, - "result": "twigs:polished_bloodstone", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_brick_slab.json b/src/main/resources/data/twigs/recipes/polished_calcite_brick_slab.json deleted file mode 100644 index 50e3ba88..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:polished_calcite_bricks" - } - }, - "result": { - "item": "twigs:polished_calcite_brick_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_brick_slab_from_calcite_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_calcite_brick_slab_from_calcite_brick_stonecutting.json deleted file mode 100644 index 3f9bc134..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_brick_slab_from_calcite_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:calcite" - }, - "result": "twigs:polished_calcite_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_brick_slab_from_polished_calcite_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_calcite_brick_slab_from_polished_calcite_brick_stonecutting.json deleted file mode 100644 index 36ebaaf9..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_brick_slab_from_polished_calcite_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_calcite_bricks" - }, - "result": "twigs:polished_calcite_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_brick_slab_from_polished_calcite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_calcite_brick_slab_from_polished_calcite_stonecutting.json deleted file mode 100644 index 25ec3ddb..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_brick_slab_from_polished_calcite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_calcite" - }, - "result": "twigs:polished_calcite_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_brick_stairs.json b/src/main/resources/data/twigs/recipes/polished_calcite_brick_stairs.json deleted file mode 100644 index cca65b0e..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:polished_calcite_bricks" - } - }, - "result": { - "item": "twigs:polished_calcite_brick_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_brick_stairs_from_calcite_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_calcite_brick_stairs_from_calcite_brick_stonecutting.json deleted file mode 100644 index 7d46d307..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_brick_stairs_from_calcite_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:calcite" - }, - "result": "twigs:polished_calcite_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_brick_stairs_from_polished_calcite_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_calcite_brick_stairs_from_polished_calcite_brick_stonecutting.json deleted file mode 100644 index 03161c57..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_brick_stairs_from_polished_calcite_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_calcite_bricks" - }, - "result": "twigs:polished_calcite_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_brick_stairs_from_polished_calcite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_calcite_brick_stairs_from_polished_calcite_stonecutting.json deleted file mode 100644 index 38767346..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_brick_stairs_from_polished_calcite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_calcite" - }, - "result": "twigs:polished_calcite_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_brick_wall.json b/src/main/resources/data/twigs/recipes/polished_calcite_brick_wall.json deleted file mode 100644 index ed823dea..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:polished_calcite_bricks" - } - }, - "result": { - "item": "twigs:polished_calcite_brick_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_brick_wall_from_calcite_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_calcite_brick_wall_from_calcite_brick_stonecutting.json deleted file mode 100644 index 53b0f50c..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_brick_wall_from_calcite_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:calcite" - }, - "result": "twigs:polished_calcite_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_brick_wall_from_polished_calcite_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_calcite_brick_wall_from_polished_calcite_brick_stonecutting.json deleted file mode 100644 index 312a9291..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_brick_wall_from_polished_calcite_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_calcite_bricks" - }, - "result": "twigs:polished_calcite_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_brick_wall_from_polished_calcite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_calcite_brick_wall_from_polished_calcite_stonecutting.json deleted file mode 100644 index 87e0704d..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_brick_wall_from_polished_calcite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_calcite" - }, - "result": "twigs:polished_calcite_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_bricks.json b/src/main/resources/data/twigs/recipes/polished_calcite_bricks.json deleted file mode 100644 index 93fdd788..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_bricks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "bark", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "twigs:polished_calcite" - } - }, - "result": { - "item": "twigs:polished_calcite_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_bricks_from_calcite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_calcite_bricks_from_calcite_stonecutting.json deleted file mode 100644 index 64a0ee87..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_bricks_from_calcite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:calcite" - }, - "result": "twigs:polished_calcite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_bricks_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_calcite_bricks_stonecutting.json deleted file mode 100644 index 4c167799..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_calcite" - }, - "result": "twigs:polished_calcite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_slab.json b/src/main/resources/data/twigs/recipes/polished_calcite_slab.json deleted file mode 100644 index 66ea1397..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:polished_calcite" - } - }, - "result": { - "item": "twigs:polished_calcite_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_slab_from_calcite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_calcite_slab_from_calcite_stonecutting.json deleted file mode 100644 index 35164e97..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_slab_from_calcite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:calcite" - }, - "result": "twigs:polished_calcite_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_slab_from_polished_calcite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_calcite_slab_from_polished_calcite_stonecutting.json deleted file mode 100644 index 5142f8ad..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_slab_from_polished_calcite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_calcite" - }, - "result": "twigs:polished_calcite_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_stairs.json b/src/main/resources/data/twigs/recipes/polished_calcite_stairs.json deleted file mode 100644 index 825e2619..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:polished_calcite" - } - }, - "result": { - "item": "twigs:polished_calcite_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_stairs_from_calcite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_calcite_stairs_from_calcite_stonecutting.json deleted file mode 100644 index 08271b88..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_stairs_from_calcite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:calcite" - }, - "result": "twigs:polished_calcite_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_stairs_from_polished_calcite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_calcite_stairs_from_polished_calcite_stonecutting.json deleted file mode 100644 index 204cdbd9..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_stairs_from_polished_calcite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_calcite" - }, - "result": "twigs:polished_calcite_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_calcite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_calcite_stonecutting.json deleted file mode 100644 index 1f845b46..00000000 --- a/src/main/resources/data/twigs/recipes/polished_calcite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:calcite" - }, - "result": "twigs:polished_calcite", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite.json b/src/main/resources/data/twigs/recipes/polished_rhyolite.json deleted file mode 100644 index 18888e98..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "twigs:rhyolite" - } - }, - "result": { - "item": "twigs:polished_rhyolite", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_slab.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_slab.json deleted file mode 100644 index d7f48e0e..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:polished_rhyolite_bricks" - } - }, - "result": { - "item": "twigs:polished_rhyolite_brick_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_slab_from_polished_rhyolite_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_slab_from_polished_rhyolite_brick_stonecutting.json deleted file mode 100644 index ee6a6e85..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_slab_from_polished_rhyolite_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_rhyolite_bricks" - }, - "result": "twigs:polished_rhyolite_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_slab_from_polished_rhyolite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_slab_from_polished_rhyolite_stonecutting.json deleted file mode 100644 index 61e28891..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_slab_from_polished_rhyolite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_rhyolite" - }, - "result": "twigs:polished_rhyolite_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_slab_from_rhyolite_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_slab_from_rhyolite_brick_stonecutting.json deleted file mode 100644 index 581d7386..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_slab_from_rhyolite_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:rhyolite" - }, - "result": "twigs:polished_rhyolite_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_stairs.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_stairs.json deleted file mode 100644 index 68e68ea8..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:polished_rhyolite_bricks" - } - }, - "result": { - "item": "twigs:polished_rhyolite_brick_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_stairs_from_polished_rhyolite_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_stairs_from_polished_rhyolite_brick_stonecutting.json deleted file mode 100644 index bc764dba..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_stairs_from_polished_rhyolite_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_rhyolite_bricks" - }, - "result": "twigs:polished_rhyolite_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_stairs_from_polished_rhyolite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_stairs_from_polished_rhyolite_stonecutting.json deleted file mode 100644 index 1b4a0af1..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_stairs_from_polished_rhyolite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_rhyolite" - }, - "result": "twigs:polished_rhyolite_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_stairs_from_rhyolite_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_stairs_from_rhyolite_brick_stonecutting.json deleted file mode 100644 index 355fd3ca..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_stairs_from_rhyolite_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:rhyolite" - }, - "result": "twigs:polished_rhyolite_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_wall.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_wall.json deleted file mode 100644 index e35bd42e..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:polished_rhyolite_bricks" - } - }, - "result": { - "item": "twigs:polished_rhyolite_brick_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_wall_from_polished_rhyolite_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_wall_from_polished_rhyolite_brick_stonecutting.json deleted file mode 100644 index 546c1553..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_wall_from_polished_rhyolite_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_rhyolite_bricks" - }, - "result": "twigs:polished_rhyolite_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_wall_from_polished_rhyolite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_wall_from_polished_rhyolite_stonecutting.json deleted file mode 100644 index cd49b1f5..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_wall_from_polished_rhyolite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_rhyolite" - }, - "result": "twigs:polished_rhyolite_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_wall_from_rhyolite_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_wall_from_rhyolite_brick_stonecutting.json deleted file mode 100644 index 13012f6c..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_brick_wall_from_rhyolite_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:rhyolite" - }, - "result": "twigs:polished_rhyolite_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_bricks.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_bricks.json deleted file mode 100644 index 05486e1d..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_bricks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "bark", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "twigs:polished_rhyolite" - } - }, - "result": { - "item": "twigs:polished_rhyolite_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_bricks_from_polished_rhyolite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_bricks_from_polished_rhyolite_stonecutting.json deleted file mode 100644 index 296fec3b..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_bricks_from_polished_rhyolite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_rhyolite" - }, - "result": "twigs:polished_rhyolite_bricks", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_bricks_from_rhyolite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_bricks_from_rhyolite_stonecutting.json deleted file mode 100644 index 7215bdd2..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_bricks_from_rhyolite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:rhyolite" - }, - "result": "twigs:polished_rhyolite_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_slab.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_slab.json deleted file mode 100644 index 216b5207..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:polished_rhyolite" - } - }, - "result": { - "item": "twigs:polished_rhyolite_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_slab_from_polished_rhyolite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_slab_from_polished_rhyolite_stonecutting.json deleted file mode 100644 index 31074d6a..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_slab_from_polished_rhyolite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_rhyolite" - }, - "result": "twigs:polished_rhyolite_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_slab_from_rhyolite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_slab_from_rhyolite_stonecutting.json deleted file mode 100644 index c9bdf1e0..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_slab_from_rhyolite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:rhyolite" - }, - "result": "twigs:polished_rhyolite_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_stairs.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_stairs.json deleted file mode 100644 index 2ed136c8..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:polished_rhyolite" - } - }, - "result": { - "item": "twigs:polished_rhyolite_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_stairs_from_polished_rhyolite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_stairs_from_polished_rhyolite_stonecutting.json deleted file mode 100644 index 33c62f13..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_stairs_from_polished_rhyolite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_rhyolite" - }, - "result": "twigs:polished_rhyolite_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_stairs_from_rhyolite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_stairs_from_rhyolite_stonecutting.json deleted file mode 100644 index 7a378376..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_stairs_from_rhyolite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:rhyolite" - }, - "result": "twigs:polished_rhyolite_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_rhyolite_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_rhyolite_stonecutting.json deleted file mode 100644 index d1334ce6..00000000 --- a/src/main/resources/data/twigs/recipes/polished_rhyolite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:rhyolite" - }, - "result": "twigs:polished_rhyolite", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_schist.json b/src/main/resources/data/twigs/recipes/polished_schist.json deleted file mode 100644 index 1c576698..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "twigs:schist" - } - }, - "result": { - "item": "twigs:polished_schist", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_brick_slab.json b/src/main/resources/data/twigs/recipes/polished_schist_brick_slab.json deleted file mode 100644 index 7609b9bd..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:polished_schist_bricks" - } - }, - "result": { - "item": "twigs:polished_schist_brick_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_brick_slab_from_polished_schist_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_schist_brick_slab_from_polished_schist_brick_stonecutting.json deleted file mode 100644 index a272caea..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_brick_slab_from_polished_schist_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_schist_bricks" - }, - "result": "twigs:polished_schist_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_brick_slab_from_polished_schist_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_schist_brick_slab_from_polished_schist_stonecutting.json deleted file mode 100644 index ac4f955e..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_brick_slab_from_polished_schist_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_schist" - }, - "result": "twigs:polished_schist_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_brick_slab_from_schist_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_schist_brick_slab_from_schist_brick_stonecutting.json deleted file mode 100644 index cee1aa39..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_brick_slab_from_schist_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:schist" - }, - "result": "twigs:polished_schist_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_brick_stairs.json b/src/main/resources/data/twigs/recipes/polished_schist_brick_stairs.json deleted file mode 100644 index d054c53c..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:polished_schist_bricks" - } - }, - "result": { - "item": "twigs:polished_schist_brick_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_brick_stairs_from_polished_schist_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_schist_brick_stairs_from_polished_schist_brick_stonecutting.json deleted file mode 100644 index d982ebf8..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_brick_stairs_from_polished_schist_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_schist_bricks" - }, - "result": "twigs:polished_schist_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_brick_stairs_from_polished_schist_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_schist_brick_stairs_from_polished_schist_stonecutting.json deleted file mode 100644 index cb0cf5eb..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_brick_stairs_from_polished_schist_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_schist" - }, - "result": "twigs:polished_schist_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_brick_stairs_from_schist_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_schist_brick_stairs_from_schist_brick_stonecutting.json deleted file mode 100644 index 553ab377..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_brick_stairs_from_schist_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:schist" - }, - "result": "twigs:polished_schist_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_brick_wall.json b/src/main/resources/data/twigs/recipes/polished_schist_brick_wall.json deleted file mode 100644 index 0c695f61..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:polished_schist_bricks" - } - }, - "result": { - "item": "twigs:polished_schist_brick_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_brick_wall_from_polished_schist_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_schist_brick_wall_from_polished_schist_brick_stonecutting.json deleted file mode 100644 index d9b8ae1e..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_brick_wall_from_polished_schist_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_schist_bricks" - }, - "result": "twigs:polished_schist_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_brick_wall_from_polished_schist_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_schist_brick_wall_from_polished_schist_stonecutting.json deleted file mode 100644 index a79e0ee3..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_brick_wall_from_polished_schist_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_schist" - }, - "result": "twigs:polished_schist_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_brick_wall_from_schist_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_schist_brick_wall_from_schist_brick_stonecutting.json deleted file mode 100644 index 8c28f5e7..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_brick_wall_from_schist_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:schist" - }, - "result": "twigs:polished_schist_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_bricks.json b/src/main/resources/data/twigs/recipes/polished_schist_bricks.json deleted file mode 100644 index 5cc02413..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_bricks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "bark", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "twigs:polished_schist" - } - }, - "result": { - "item": "twigs:polished_schist_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_schist_bricks_from_schist_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_schist_bricks_from_schist_stonecutting.json deleted file mode 100644 index 654677a4..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_bricks_from_schist_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:schist" - }, - "result": "twigs:polished_schist_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_schist_bricks_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_schist_bricks_stonecutting.json deleted file mode 100644 index 31a2efda..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_schist" - }, - "result": "twigs:polished_schist_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_schist_slab.json b/src/main/resources/data/twigs/recipes/polished_schist_slab.json deleted file mode 100644 index 5b07ff18..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:polished_schist" - } - }, - "result": { - "item": "twigs:polished_schist_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_slab_from_polished_schist_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_schist_slab_from_polished_schist_stonecutting.json deleted file mode 100644 index 92179685..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_slab_from_polished_schist_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_schist" - }, - "result": "twigs:polished_schist_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_slab_from_schist_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_schist_slab_from_schist_stonecutting.json deleted file mode 100644 index 591da5db..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_slab_from_schist_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:schist" - }, - "result": "twigs:polished_schist_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_stairs.json b/src/main/resources/data/twigs/recipes/polished_schist_stairs.json deleted file mode 100644 index 0c21b19a..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:polished_schist" - } - }, - "result": { - "item": "twigs:polished_schist_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_stairs_from_polished_schist_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_schist_stairs_from_polished_schist_stonecutting.json deleted file mode 100644 index 8c4c3553..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_stairs_from_polished_schist_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_schist" - }, - "result": "twigs:polished_schist_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_stairs_from_schist_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_schist_stairs_from_schist_stonecutting.json deleted file mode 100644 index 62effe14..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_stairs_from_schist_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:schist" - }, - "result": "twigs:polished_schist_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_schist_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_schist_stonecutting.json deleted file mode 100644 index ad5d2ab3..00000000 --- a/src/main/resources/data/twigs/recipes/polished_schist_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:schist" - }, - "result": "twigs:polished_schist", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_brick_slab.json b/src/main/resources/data/twigs/recipes/polished_tuff_brick_slab.json deleted file mode 100644 index d9162f85..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:polished_tuff_bricks" - } - }, - "result": { - "item": "twigs:polished_tuff_brick_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_brick_slab_from_polished_tuff_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_tuff_brick_slab_from_polished_tuff_brick_stonecutting.json deleted file mode 100644 index 9bbc1784..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_brick_slab_from_polished_tuff_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_tuff_bricks" - }, - "result": "twigs:polished_tuff_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_brick_slab_from_polished_tuff_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_tuff_brick_slab_from_polished_tuff_stonecutting.json deleted file mode 100644 index a48e94f0..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_brick_slab_from_polished_tuff_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_tuff" - }, - "result": "twigs:polished_tuff_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_brick_slab_from_tuff_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_tuff_brick_slab_from_tuff_brick_stonecutting.json deleted file mode 100644 index cdde8965..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_brick_slab_from_tuff_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff" - }, - "result": "twigs:polished_tuff_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_brick_stairs.json b/src/main/resources/data/twigs/recipes/polished_tuff_brick_stairs.json deleted file mode 100644 index 3fcf752e..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:polished_tuff_bricks" - } - }, - "result": { - "item": "twigs:polished_tuff_brick_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_brick_stairs_from_polished_tuff_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_tuff_brick_stairs_from_polished_tuff_brick_stonecutting.json deleted file mode 100644 index 1f9d6791..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_brick_stairs_from_polished_tuff_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_tuff_bricks" - }, - "result": "twigs:polished_tuff_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_brick_stairs_from_polished_tuff_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_tuff_brick_stairs_from_polished_tuff_stonecutting.json deleted file mode 100644 index b80ce8eb..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_brick_stairs_from_polished_tuff_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_tuff" - }, - "result": "twigs:polished_tuff_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_brick_stairs_from_tuff_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_tuff_brick_stairs_from_tuff_brick_stonecutting.json deleted file mode 100644 index 32053e9d..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_brick_stairs_from_tuff_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff" - }, - "result": "twigs:polished_tuff_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_brick_wall.json b/src/main/resources/data/twigs/recipes/polished_tuff_brick_wall.json deleted file mode 100644 index 2945aff2..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:polished_tuff_bricks" - } - }, - "result": { - "item": "twigs:polished_tuff_brick_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_brick_wall_from_polished_tuff_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_tuff_brick_wall_from_polished_tuff_brick_stonecutting.json deleted file mode 100644 index 59be5a8a..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_brick_wall_from_polished_tuff_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_tuff_bricks" - }, - "result": "twigs:polished_tuff_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_brick_wall_from_polished_tuff_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_tuff_brick_wall_from_polished_tuff_stonecutting.json deleted file mode 100644 index 04b2787d..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_brick_wall_from_polished_tuff_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_tuff" - }, - "result": "twigs:polished_tuff_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_brick_wall_from_tuff_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_tuff_brick_wall_from_tuff_brick_stonecutting.json deleted file mode 100644 index 577cd02e..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_brick_wall_from_tuff_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff" - }, - "result": "twigs:polished_tuff_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_bricks.json b/src/main/resources/data/twigs/recipes/polished_tuff_bricks.json deleted file mode 100644 index 4f9b6b5b..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_bricks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "bark", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "twigs:polished_tuff" - } - }, - "result": { - "item": "twigs:polished_tuff_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_bricks_from_tuff_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_tuff_bricks_from_tuff_stonecutting.json deleted file mode 100644 index 1a125288..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_bricks_from_tuff_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff" - }, - "result": "twigs:polished_tuff_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_bricks_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_tuff_bricks_stonecutting.json deleted file mode 100644 index 3a2c62b9..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_tuff" - }, - "result": "twigs:polished_tuff_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_slab.json b/src/main/resources/data/twigs/recipes/polished_tuff_slab.json deleted file mode 100644 index cc7e11d0..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:polished_tuff" - } - }, - "result": { - "item": "twigs:polished_tuff_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_slab_from_polished_tuff_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_tuff_slab_from_polished_tuff_stonecutting.json deleted file mode 100644 index d95509b7..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_slab_from_polished_tuff_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_tuff" - }, - "result": "twigs:polished_tuff_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_slab_from_tuff_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_tuff_slab_from_tuff_stonecutting.json deleted file mode 100644 index 30644528..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_slab_from_tuff_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff" - }, - "result": "twigs:polished_tuff_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_stairs.json b/src/main/resources/data/twigs/recipes/polished_tuff_stairs.json deleted file mode 100644 index 2101e00c..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:polished_tuff" - } - }, - "result": { - "item": "twigs:polished_tuff_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_stairs_from_polished_tuff_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_tuff_stairs_from_polished_tuff_stonecutting.json deleted file mode 100644 index 7b3b4371..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_stairs_from_polished_tuff_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:polished_tuff" - }, - "result": "twigs:polished_tuff_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_stairs_from_tuff_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_tuff_stairs_from_tuff_stonecutting.json deleted file mode 100644 index cd50e37b..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_stairs_from_tuff_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff" - }, - "result": "twigs:polished_tuff_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/polished_tuff_stonecutting.json b/src/main/resources/data/twigs/recipes/polished_tuff_stonecutting.json deleted file mode 100644 index d088be48..00000000 --- a/src/main/resources/data/twigs/recipes/polished_tuff_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff" - }, - "result": "twigs:polished_tuff", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/purple_packed_silt.json b/src/main/resources/data/twigs/recipes/purple_packed_silt.json deleted file mode 100644 index c5862d50..00000000 --- a/src/main/resources/data/twigs/recipes/purple_packed_silt.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:packed_silt" - }, - "X": { - "item": "minecraft:purple_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:purple_packed_silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/purple_silt_pot.json b/src/main/resources/data/twigs/recipes/purple_silt_pot.json deleted file mode 100644 index f0ef3258..00000000 --- a/src/main/resources/data/twigs/recipes/purple_silt_pot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt_pot" - }, - { - "item": "minecraft:purple_dye" - } - ], - "result": { - "item": "twigs:purple_silt_pot" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/purple_silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/purple_silt_shingle_slab.json deleted file mode 100644 index 75134454..00000000 --- a/src/main/resources/data/twigs/recipes/purple_silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:purple_silt_shingles" - } - }, - "result": { - "item": "twigs:purple_silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/purple_silt_shingle_slab_from_purple_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/purple_silt_shingle_slab_from_purple_packed_silt_stonecutting.json deleted file mode 100644 index dc59936b..00000000 --- a/src/main/resources/data/twigs/recipes/purple_silt_shingle_slab_from_purple_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:purple_packed_silt" - }, - "result": "twigs:purple_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/purple_silt_shingle_slab_from_purple_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/purple_silt_shingle_slab_from_purple_silt_shingle_stonecutting.json deleted file mode 100644 index c46975c4..00000000 --- a/src/main/resources/data/twigs/recipes/purple_silt_shingle_slab_from_purple_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:purple_silt_shingles" - }, - "result": "twigs:purple_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/purple_silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/purple_silt_shingle_stairs.json deleted file mode 100644 index 1f98b8a8..00000000 --- a/src/main/resources/data/twigs/recipes/purple_silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:purple_silt_shingles" - } - }, - "result": { - "item": "twigs:purple_silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/purple_silt_shingle_stairs_from_purple_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/purple_silt_shingle_stairs_from_purple_packed_silt_stonecutting.json deleted file mode 100644 index dc7ecf87..00000000 --- a/src/main/resources/data/twigs/recipes/purple_silt_shingle_stairs_from_purple_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:purple_packed_silt" - }, - "result": "twigs:purple_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/purple_silt_shingle_stairs_from_purple_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/purple_silt_shingle_stairs_from_purple_silt_shingle_stonecutting.json deleted file mode 100644 index b13a37c5..00000000 --- a/src/main/resources/data/twigs/recipes/purple_silt_shingle_stairs_from_purple_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:purple_silt_shingles" - }, - "result": "twigs:purple_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/purple_silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/purple_silt_shingle_wall.json deleted file mode 100644 index b8ac7e52..00000000 --- a/src/main/resources/data/twigs/recipes/purple_silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:purple_silt_shingles" - } - }, - "result": { - "item": "twigs:purple_silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/purple_silt_shingle_wall_from_purple_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/purple_silt_shingle_wall_from_purple_packed_silt_stonecutting.json deleted file mode 100644 index ac8af556..00000000 --- a/src/main/resources/data/twigs/recipes/purple_silt_shingle_wall_from_purple_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:purple_packed_silt" - }, - "result": "twigs:purple_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/purple_silt_shingle_wall_from_purple_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/purple_silt_shingle_wall_from_purple_silt_shingle_stonecutting.json deleted file mode 100644 index ebe7fce2..00000000 --- a/src/main/resources/data/twigs/recipes/purple_silt_shingle_wall_from_purple_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:purple_silt_shingles" - }, - "result": "twigs:purple_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/purple_silt_shingles.json b/src/main/resources/data/twigs/recipes/purple_silt_shingles.json deleted file mode 100644 index da674101..00000000 --- a/src/main/resources/data/twigs/recipes/purple_silt_shingles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:silt_shingles" - }, - "X": { - "item": "minecraft:purple_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:purple_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/purple_silt_shingles_from_packed_silt.json b/src/main/resources/data/twigs/recipes/purple_silt_shingles_from_packed_silt.json deleted file mode 100644 index f2b692e9..00000000 --- a/src/main/resources/data/twigs/recipes/purple_silt_shingles_from_packed_silt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:purple_packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:purple_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/purple_silt_shingles_from_purple_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/purple_silt_shingles_from_purple_packed_silt_stonecutting.json deleted file mode 100644 index 9ec4b594..00000000 --- a/src/main/resources/data/twigs/recipes/purple_silt_shingles_from_purple_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:purple_packed_silt" - }, - "result": "twigs:purple_silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/quartz_column.json b/src/main/resources/data/twigs/recipes/quartz_column.json deleted file mode 100644 index 85fdadc4..00000000 --- a/src/main/resources/data/twigs/recipes/quartz_column.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - " # " - ], - "key": { - "#": { - "item": "minecraft:quartz_block" - } - }, - "result": { - "item": "twigs:quartz_column", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/quartz_column_stonecutting.json b/src/main/resources/data/twigs/recipes/quartz_column_stonecutting.json deleted file mode 100644 index b1bad87f..00000000 --- a/src/main/resources/data/twigs/recipes/quartz_column_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:quartz_block" - }, - "result": "twigs:quartz_column", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/red_packed_silt.json b/src/main/resources/data/twigs/recipes/red_packed_silt.json deleted file mode 100644 index d5a8e196..00000000 --- a/src/main/resources/data/twigs/recipes/red_packed_silt.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:packed_silt" - }, - "X": { - "item": "minecraft:red_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:red_packed_silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/red_silt_pot.json b/src/main/resources/data/twigs/recipes/red_silt_pot.json deleted file mode 100644 index 73b6a7bc..00000000 --- a/src/main/resources/data/twigs/recipes/red_silt_pot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt_pot" - }, - { - "item": "minecraft:red_dye" - } - ], - "result": { - "item": "twigs:red_silt_pot" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/red_silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/red_silt_shingle_slab.json deleted file mode 100644 index a2a0d1ab..00000000 --- a/src/main/resources/data/twigs/recipes/red_silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:red_silt_shingles" - } - }, - "result": { - "item": "twigs:red_silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/red_silt_shingle_slab_from_red_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/red_silt_shingle_slab_from_red_packed_silt_stonecutting.json deleted file mode 100644 index ab50a6c0..00000000 --- a/src/main/resources/data/twigs/recipes/red_silt_shingle_slab_from_red_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:red_packed_silt" - }, - "result": "twigs:red_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/red_silt_shingle_slab_from_red_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/red_silt_shingle_slab_from_red_silt_shingle_stonecutting.json deleted file mode 100644 index 5ea35faa..00000000 --- a/src/main/resources/data/twigs/recipes/red_silt_shingle_slab_from_red_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:red_silt_shingles" - }, - "result": "twigs:red_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/red_silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/red_silt_shingle_stairs.json deleted file mode 100644 index 0b9db6a8..00000000 --- a/src/main/resources/data/twigs/recipes/red_silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:red_silt_shingles" - } - }, - "result": { - "item": "twigs:red_silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/red_silt_shingle_stairs_from_red_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/red_silt_shingle_stairs_from_red_packed_silt_stonecutting.json deleted file mode 100644 index 951edf25..00000000 --- a/src/main/resources/data/twigs/recipes/red_silt_shingle_stairs_from_red_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:red_packed_silt" - }, - "result": "twigs:red_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/red_silt_shingle_stairs_from_red_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/red_silt_shingle_stairs_from_red_silt_shingle_stonecutting.json deleted file mode 100644 index 3d3d5b9f..00000000 --- a/src/main/resources/data/twigs/recipes/red_silt_shingle_stairs_from_red_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:red_silt_shingles" - }, - "result": "twigs:red_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/red_silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/red_silt_shingle_wall.json deleted file mode 100644 index 47e40510..00000000 --- a/src/main/resources/data/twigs/recipes/red_silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:red_silt_shingles" - } - }, - "result": { - "item": "twigs:red_silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/red_silt_shingle_wall_from_red_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/red_silt_shingle_wall_from_red_packed_silt_stonecutting.json deleted file mode 100644 index 9f663a93..00000000 --- a/src/main/resources/data/twigs/recipes/red_silt_shingle_wall_from_red_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:red_packed_silt" - }, - "result": "twigs:red_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/red_silt_shingle_wall_from_red_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/red_silt_shingle_wall_from_red_silt_shingle_stonecutting.json deleted file mode 100644 index ff2deb4d..00000000 --- a/src/main/resources/data/twigs/recipes/red_silt_shingle_wall_from_red_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:red_silt_shingles" - }, - "result": "twigs:red_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/red_silt_shingles.json b/src/main/resources/data/twigs/recipes/red_silt_shingles.json deleted file mode 100644 index a7a978d0..00000000 --- a/src/main/resources/data/twigs/recipes/red_silt_shingles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:silt_shingles" - }, - "X": { - "item": "minecraft:red_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:red_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/red_silt_shingles_from_packed_silt.json b/src/main/resources/data/twigs/recipes/red_silt_shingles_from_packed_silt.json deleted file mode 100644 index b94fe70a..00000000 --- a/src/main/resources/data/twigs/recipes/red_silt_shingles_from_packed_silt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:red_packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:red_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/red_silt_shingles_from_red_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/red_silt_shingles_from_red_packed_silt_stonecutting.json deleted file mode 100644 index d4768cac..00000000 --- a/src/main/resources/data/twigs/recipes/red_silt_shingles_from_red_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:red_packed_silt" - }, - "result": "twigs:red_silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/rhyolite.json b/src/main/resources/data/twigs/recipes/rhyolite.json deleted file mode 100644 index c191d49a..00000000 --- a/src/main/resources/data/twigs/recipes/rhyolite.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#R ", - "R# ", - " " - ], - "key": { - "#": { - "item": "minecraft:quartz" - }, - "R": { - "item": "minecraft:red_sand" - } - }, - "result": { - "item": "twigs:rhyolite", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/rhyolite_slab.json b/src/main/resources/data/twigs/recipes/rhyolite_slab.json deleted file mode 100644 index 8274444d..00000000 --- a/src/main/resources/data/twigs/recipes/rhyolite_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:rhyolite" - } - }, - "result": { - "item": "twigs:rhyolite_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/rhyolite_slab_from_rhyolite_stonecutting.json b/src/main/resources/data/twigs/recipes/rhyolite_slab_from_rhyolite_stonecutting.json deleted file mode 100644 index ae64eb12..00000000 --- a/src/main/resources/data/twigs/recipes/rhyolite_slab_from_rhyolite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:rhyolite" - }, - "result": "twigs:rhyolite_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/rhyolite_stairs.json b/src/main/resources/data/twigs/recipes/rhyolite_stairs.json deleted file mode 100644 index b31f819c..00000000 --- a/src/main/resources/data/twigs/recipes/rhyolite_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:rhyolite" - } - }, - "result": { - "item": "twigs:rhyolite_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/rhyolite_stairs_from_rhyolite_stonecutting.json b/src/main/resources/data/twigs/recipes/rhyolite_stairs_from_rhyolite_stonecutting.json deleted file mode 100644 index 765e1623..00000000 --- a/src/main/resources/data/twigs/recipes/rhyolite_stairs_from_rhyolite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:rhyolite" - }, - "result": "twigs:rhyolite_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/rhyolite_wall.json b/src/main/resources/data/twigs/recipes/rhyolite_wall.json deleted file mode 100644 index 60644e7c..00000000 --- a/src/main/resources/data/twigs/recipes/rhyolite_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:rhyolite" - } - }, - "result": { - "item": "twigs:rhyolite_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/rhyolite_wall_from_rhyolite_stonecutting.json b/src/main/resources/data/twigs/recipes/rhyolite_wall_from_rhyolite_stonecutting.json deleted file mode 100644 index 1ef792b0..00000000 --- a/src/main/resources/data/twigs/recipes/rhyolite_wall_from_rhyolite_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:rhyolite" - }, - "result": "twigs:rhyolite_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/rocky_dirt.json b/src/main/resources/data/twigs/recipes/rocky_dirt.json deleted file mode 100644 index 7f0c7bf8..00000000 --- a/src/main/resources/data/twigs/recipes/rocky_dirt.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - " #C", - " C#" - ], - "key": { - "#": { - "item": "minecraft:dirt" - }, - "C": { - "item": "twigs:pebble" - } - }, - "result": { - "item": "twigs:rocky_dirt", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/schist.json b/src/main/resources/data/twigs/recipes/schist.json deleted file mode 100644 index c231c0a2..00000000 --- a/src/main/resources/data/twigs/recipes/schist.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#C ", - "C# ", - " " - ], - "key": { - "#": { - "item": "minecraft:quartz" - }, - "C": { - "item": "minecraft:clay_ball" - } - }, - "result": { - "item": "twigs:schist", - "count": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/schist_slab.json b/src/main/resources/data/twigs/recipes/schist_slab.json deleted file mode 100644 index adf4fca5..00000000 --- a/src/main/resources/data/twigs/recipes/schist_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:schist" - } - }, - "result": { - "item": "twigs:schist_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/schist_slab_from_schist_stonecutting.json b/src/main/resources/data/twigs/recipes/schist_slab_from_schist_stonecutting.json deleted file mode 100644 index 7a4d923e..00000000 --- a/src/main/resources/data/twigs/recipes/schist_slab_from_schist_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:schist" - }, - "result": "twigs:schist_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/schist_stairs.json b/src/main/resources/data/twigs/recipes/schist_stairs.json deleted file mode 100644 index 34057b73..00000000 --- a/src/main/resources/data/twigs/recipes/schist_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:schist" - } - }, - "result": { - "item": "twigs:schist_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/schist_stairs_from_schist_stonecutting.json b/src/main/resources/data/twigs/recipes/schist_stairs_from_schist_stonecutting.json deleted file mode 100644 index 02cd10c9..00000000 --- a/src/main/resources/data/twigs/recipes/schist_stairs_from_schist_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:schist" - }, - "result": "twigs:schist_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/schist_wall.json b/src/main/resources/data/twigs/recipes/schist_wall.json deleted file mode 100644 index 2a416d2b..00000000 --- a/src/main/resources/data/twigs/recipes/schist_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:schist" - } - }, - "result": { - "item": "twigs:schist_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/schist_wall_from_schist_stonecutting.json b/src/main/resources/data/twigs/recipes/schist_wall_from_schist_stonecutting.json deleted file mode 100644 index 8ffa91e1..00000000 --- a/src/main/resources/data/twigs/recipes/schist_wall_from_schist_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:schist" - }, - "result": "twigs:schist_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/silt.json b/src/main/resources/data/twigs/recipes/silt.json deleted file mode 100644 index db54ed0c..00000000 --- a/src/main/resources/data/twigs/recipes/silt.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "D": { - "item": "minecraft:sand" - }, - "G": { - "item": "minecraft:clay" - } - }, - "pattern": [ - "DG", - "GD" - ], - "result": { - "count": 4, - "item": "twigs:silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/silt_brick.json b/src/main/resources/data/twigs/recipes/silt_brick.json deleted file mode 100644 index 76582d9f..00000000 --- a/src/main/resources/data/twigs/recipes/silt_brick.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "cookingtime": 200, - "experience": 0.3, - "ingredient": { - "item": "twigs:silt_ball" - }, - "result": "twigs:silt_brick" -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/silt_brick_slab.json b/src/main/resources/data/twigs/recipes/silt_brick_slab.json deleted file mode 100644 index f9745192..00000000 --- a/src/main/resources/data/twigs/recipes/silt_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:silt_bricks" - } - }, - "result": { - "item": "twigs:silt_brick_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/silt_brick_slab_from_silt_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/silt_brick_slab_from_silt_brick_stonecutting.json deleted file mode 100644 index fb6a05bb..00000000 --- a/src/main/resources/data/twigs/recipes/silt_brick_slab_from_silt_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:silt_bricks" - }, - "result": "twigs:silt_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/silt_brick_stairs.json b/src/main/resources/data/twigs/recipes/silt_brick_stairs.json deleted file mode 100644 index 25676910..00000000 --- a/src/main/resources/data/twigs/recipes/silt_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:silt_bricks" - } - }, - "result": { - "item": "twigs:silt_brick_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/silt_brick_stairs_from_silt_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/silt_brick_stairs_from_silt_brick_stonecutting.json deleted file mode 100644 index 512e3c79..00000000 --- a/src/main/resources/data/twigs/recipes/silt_brick_stairs_from_silt_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:silt_bricks" - }, - "result": "twigs:silt_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/silt_brick_trail.json b/src/main/resources/data/twigs/recipes/silt_brick_trail.json deleted file mode 100644 index 5cfb2648..00000000 --- a/src/main/resources/data/twigs/recipes/silt_brick_trail.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " #", - "# " - ], - "key": { - "#": { - "item": "twigs:silt_brick" - } - }, - "result": { - "item": "twigs:silt_brick_trail", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/silt_brick_wall.json b/src/main/resources/data/twigs/recipes/silt_brick_wall.json deleted file mode 100644 index fbddcb64..00000000 --- a/src/main/resources/data/twigs/recipes/silt_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:silt_bricks" - } - }, - "result": { - "item": "twigs:silt_brick_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/silt_brick_wall_from_silt_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/silt_brick_wall_from_silt_brick_stonecutting.json deleted file mode 100644 index be02bde1..00000000 --- a/src/main/resources/data/twigs/recipes/silt_brick_wall_from_silt_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:silt_bricks" - }, - "result": "twigs:silt_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/silt_bricks.json b/src/main/resources/data/twigs/recipes/silt_bricks.json deleted file mode 100644 index c91a087d..00000000 --- a/src/main/resources/data/twigs/recipes/silt_bricks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:silt_brick" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "item": "twigs:silt_bricks" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/silt_from_silt_balls.json b/src/main/resources/data/twigs/recipes/silt_from_silt_balls.json deleted file mode 100644 index 46b900a5..00000000 --- a/src/main/resources/data/twigs/recipes/silt_from_silt_balls.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:silt_ball" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "item": "twigs:silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/silt_pot.json b/src/main/resources/data/twigs/recipes/silt_pot.json deleted file mode 100644 index 1f8a3747..00000000 --- a/src/main/resources/data/twigs/recipes/silt_pot.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# #", - "# #", - "###" - ], - "key": { - "#": { - "item": "twigs:silt_brick" - } - }, - "result": { - "item": "twigs:silt_pot", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/silt_shingle_slab.json deleted file mode 100644 index 1aed45cd..00000000 --- a/src/main/resources/data/twigs/recipes/silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:silt_shingles" - } - }, - "result": { - "item": "twigs:silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/silt_shingle_slab_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/silt_shingle_slab_from_packed_silt_stonecutting.json deleted file mode 100644 index c7dc5326..00000000 --- a/src/main/resources/data/twigs/recipes/silt_shingle_slab_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:packed_silt" - }, - "result": "twigs:silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/silt_shingle_slab_from_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/silt_shingle_slab_from_silt_shingle_stonecutting.json deleted file mode 100644 index 9395e5c1..00000000 --- a/src/main/resources/data/twigs/recipes/silt_shingle_slab_from_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:silt_shingles" - }, - "result": "twigs:silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/silt_shingle_stairs.json deleted file mode 100644 index 5c43d1d3..00000000 --- a/src/main/resources/data/twigs/recipes/silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:silt_shingles" - } - }, - "result": { - "item": "twigs:silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/silt_shingle_stairs_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/silt_shingle_stairs_from_packed_silt_stonecutting.json deleted file mode 100644 index a8c8607e..00000000 --- a/src/main/resources/data/twigs/recipes/silt_shingle_stairs_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:packed_silt" - }, - "result": "twigs:silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/silt_shingle_stairs_from_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/silt_shingle_stairs_from_silt_shingle_stonecutting.json deleted file mode 100644 index 06a493f2..00000000 --- a/src/main/resources/data/twigs/recipes/silt_shingle_stairs_from_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:silt_shingles" - }, - "result": "twigs:silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/silt_shingle_wall.json deleted file mode 100644 index a929f8ab..00000000 --- a/src/main/resources/data/twigs/recipes/silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:silt_shingles" - } - }, - "result": { - "item": "twigs:silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/silt_shingle_wall_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/silt_shingle_wall_from_packed_silt_stonecutting.json deleted file mode 100644 index 73c60cf0..00000000 --- a/src/main/resources/data/twigs/recipes/silt_shingle_wall_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:packed_silt" - }, - "result": "twigs:silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/silt_shingle_wall_from_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/silt_shingle_wall_from_silt_shingle_stonecutting.json deleted file mode 100644 index 01ab43aa..00000000 --- a/src/main/resources/data/twigs/recipes/silt_shingle_wall_from_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:silt_shingles" - }, - "result": "twigs:silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/silt_shingles.json b/src/main/resources/data/twigs/recipes/silt_shingles.json deleted file mode 100644 index 397e059e..00000000 --- a/src/main/resources/data/twigs/recipes/silt_shingles.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/silt_shingles_from_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/silt_shingles_from_packed_silt_stonecutting.json deleted file mode 100644 index 778247e3..00000000 --- a/src/main/resources/data/twigs/recipes/silt_shingles_from_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:packed_silt" - }, - "result": "twigs:silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_slab.json b/src/main/resources/data/twigs/recipes/smooth_basalt_brick_slab.json deleted file mode 100644 index cec009f0..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_slab.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - " " - ], - "key": { - "#": { - "item": "twigs:smooth_basalt_bricks" - } - }, - "result": { - "item": "twigs:smooth_basalt_brick_slab", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_slab_from_smooth_basalt_stonecutting.json b/src/main/resources/data/twigs/recipes/smooth_basalt_brick_slab_from_smooth_basalt_stonecutting.json deleted file mode 100644 index 89e7a9a0..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_slab_from_smooth_basalt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:smooth_basalt" - }, - "result": "twigs:smooth_basalt_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_slab_stonecutting.json b/src/main/resources/data/twigs/recipes/smooth_basalt_brick_slab_stonecutting.json deleted file mode 100644 index 1e270380..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:smooth_basalt_bricks" - }, - "result": "twigs:smooth_basalt_brick_slab", - "count": 2 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_stairs.json b/src/main/resources/data/twigs/recipes/smooth_basalt_brick_stairs.json deleted file mode 100644 index bb2a35f6..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:smooth_basalt_bricks" - } - }, - "result": { - "item": "twigs:smooth_basalt_brick_stairs", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_stairs_from_smooth_basalt_stonecutting.json b/src/main/resources/data/twigs/recipes/smooth_basalt_brick_stairs_from_smooth_basalt_stonecutting.json deleted file mode 100644 index efc6d700..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_stairs_from_smooth_basalt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:smooth_basalt" - }, - "result": "twigs:smooth_basalt_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/recipes/smooth_basalt_brick_stairs_stonecutting.json deleted file mode 100644 index e667b435..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:smooth_basalt_bricks" - }, - "result": "twigs:smooth_basalt_brick_stairs", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_wall.json b/src/main/resources/data/twigs/recipes/smooth_basalt_brick_wall.json deleted file mode 100644 index 1e512529..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_wall.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " ", - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:smooth_basalt_bricks" - } - }, - "result": { - "item": "twigs:smooth_basalt_brick_wall", - "count": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_wall_from_smooth_basalt_stonecutting.json b/src/main/resources/data/twigs/recipes/smooth_basalt_brick_wall_from_smooth_basalt_stonecutting.json deleted file mode 100644 index 9e6ac855..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_wall_from_smooth_basalt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:smooth_basalt" - }, - "result": "twigs:smooth_basalt_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_wall_stonecutting.json b/src/main/resources/data/twigs/recipes/smooth_basalt_brick_wall_stonecutting.json deleted file mode 100644 index d556d6f6..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_basalt_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:smooth_basalt_bricks" - }, - "result": "twigs:smooth_basalt_brick_wall", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/smooth_basalt_bricks.json b/src/main/resources/data/twigs/recipes/smooth_basalt_bricks.json deleted file mode 100644 index aca38644..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_basalt_bricks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "bark", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "minecraft:smooth_basalt" - } - }, - "result": { - "item": "twigs:smooth_basalt_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/smooth_basalt_bricks_stonecutting.json b/src/main/resources/data/twigs/recipes/smooth_basalt_bricks_stonecutting.json deleted file mode 100644 index 089b5109..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_basalt_bricks_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:smooth_basalt" - }, - "result": "twigs:smooth_basalt_bricks", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/smooth_stone_brick_slab.json b/src/main/resources/data/twigs/recipes/smooth_stone_brick_slab.json deleted file mode 100644 index 4ae16183..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_stone_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:smooth_stone_bricks" - } - }, - "result": { - "item": "twigs:smooth_stone_brick_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/smooth_stone_brick_slab_from_smooth_stone_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/smooth_stone_brick_slab_from_smooth_stone_brick_stonecutting.json deleted file mode 100644 index 904b2ae0..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_stone_brick_slab_from_smooth_stone_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:smooth_stone_bricks" - }, - "result": "twigs:smooth_stone_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/smooth_stone_brick_slab_from_smooth_stone_stonecutting.json b/src/main/resources/data/twigs/recipes/smooth_stone_brick_slab_from_smooth_stone_stonecutting.json deleted file mode 100644 index 8ee87b6d..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_stone_brick_slab_from_smooth_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:smooth_stone" - }, - "result": "twigs:smooth_stone_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/smooth_stone_brick_stairs.json b/src/main/resources/data/twigs/recipes/smooth_stone_brick_stairs.json deleted file mode 100644 index d045b0d9..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_stone_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:smooth_stone_bricks" - } - }, - "result": { - "item": "twigs:smooth_stone_brick_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/smooth_stone_brick_stairs_from_smooth_stone_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/smooth_stone_brick_stairs_from_smooth_stone_brick_stonecutting.json deleted file mode 100644 index 7813115d..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_stone_brick_stairs_from_smooth_stone_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:smooth_stone_bricks" - }, - "result": "twigs:smooth_stone_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/smooth_stone_brick_stairs_from_smooth_stone_stonecutting.json b/src/main/resources/data/twigs/recipes/smooth_stone_brick_stairs_from_smooth_stone_stonecutting.json deleted file mode 100644 index cd7011d5..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_stone_brick_stairs_from_smooth_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:smooth_stone" - }, - "result": "twigs:smooth_stone_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/smooth_stone_brick_wall.json b/src/main/resources/data/twigs/recipes/smooth_stone_brick_wall.json deleted file mode 100644 index dbb78556..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_stone_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:smooth_stone_bricks" - } - }, - "result": { - "item": "twigs:smooth_stone_brick_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/smooth_stone_brick_wall_from_smooth_stone_brick_stonecutting.json b/src/main/resources/data/twigs/recipes/smooth_stone_brick_wall_from_smooth_stone_brick_stonecutting.json deleted file mode 100644 index 7aa7f426..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_stone_brick_wall_from_smooth_stone_brick_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:smooth_stone_bricks" - }, - "result": "twigs:smooth_stone_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/smooth_stone_brick_wall_from_smooth_stone_stonecutting.json b/src/main/resources/data/twigs/recipes/smooth_stone_brick_wall_from_smooth_stone_stonecutting.json deleted file mode 100644 index d3e52c1f..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_stone_brick_wall_from_smooth_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:smooth_stone" - }, - "result": "twigs:smooth_stone_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/smooth_stone_bricks.json b/src/main/resources/data/twigs/recipes/smooth_stone_bricks.json deleted file mode 100644 index e98def37..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_stone_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "minecraft:smooth_stone" - } - }, - "result": { - "item": "twigs:smooth_stone_bricks", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/smooth_stone_bricks_from_smooth_stone_stonecutting.json b/src/main/resources/data/twigs/recipes/smooth_stone_bricks_from_smooth_stone_stonecutting.json deleted file mode 100644 index f3fec8ba..00000000 --- a/src/main/resources/data/twigs/recipes/smooth_stone_bricks_from_smooth_stone_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:smooth_stone" - }, - "result": "twigs:smooth_stone_bricks", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/soul_lamp.json b/src/main/resources/data/twigs/recipes/soul_lamp.json deleted file mode 100644 index 6b318723..00000000 --- a/src/main/resources/data/twigs/recipes/soul_lamp.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "iii", - "iSi", - "iFi" - ], - "key": { - "i": { - "item": "minecraft:iron_ingot" - }, - "S": { - "item": "minecraft:soul_torch" - }, - "F": { - "item": "minecraft:soul_sand" - } - }, - "result": { - "item": "twigs:soul_lamp", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/spruce_table.json b/src/main/resources/data/twigs/recipes/spruce_table.json deleted file mode 100644 index 1208f409..00000000 --- a/src/main/resources/data/twigs/recipes/spruce_table.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "___", - "O O", - "O O" - ], - "key": { - "_": { - "item": "minecraft:spruce_slab" - }, - "O": { - "item": "minecraft:spruce_fence" - } - }, - "result": { - "item": "twigs:spruce_table", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/stick_from_twig.json b/src/main/resources/data/twigs/recipes/stick_from_twig.json deleted file mode 100644 index 2206e419..00000000 --- a/src/main/resources/data/twigs/recipes/stick_from_twig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "group": "sticks", - "ingredients": [ - { - "item": "twigs:twig" - } - ], - "result": { - "count": 2, - "item": "minecraft:stick" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/stone_column.json b/src/main/resources/data/twigs/recipes/stone_column.json deleted file mode 100644 index 8bb1393e..00000000 --- a/src/main/resources/data/twigs/recipes/stone_column.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - " # " - ], - "key": { - "#": { - "item": "minecraft:stone" - } - }, - "result": { - "item": "twigs:stone_column", - "count": 4 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/stone_column_stonecutting.json b/src/main/resources/data/twigs/recipes/stone_column_stonecutting.json deleted file mode 100644 index da7e692d..00000000 --- a/src/main/resources/data/twigs/recipes/stone_column_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:stone" - }, - "result": "twigs:stone_column", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/torchflower_paper_lantern.json b/src/main/resources/data/twigs/recipes/torchflower_paper_lantern.json deleted file mode 100644 index 00104438..00000000 --- a/src/main/resources/data/twigs/recipes/torchflower_paper_lantern.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:paper_lantern" - }, - { - "item": "minecraft:torchflower" - } - ], - "result": { - "item": "twigs:torchflower_paper_lantern", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/tuff_slab_from_tuff_stonecutting.json b/src/main/resources/data/twigs/recipes/tuff_slab_from_tuff_stonecutting.json deleted file mode 100644 index 0c5386b0..00000000 --- a/src/main/resources/data/twigs/recipes/tuff_slab_from_tuff_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff" - }, - "result": "twigs:tuff_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/tuff_stairs.json b/src/main/resources/data/twigs/recipes/tuff_stairs.json deleted file mode 100644 index 02494bd8..00000000 --- a/src/main/resources/data/twigs/recipes/tuff_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "minecraft:tuff" - } - }, - "result": { - "item": "twigs:tuff_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/tuff_stairs_from_tuff_stonecutting.json b/src/main/resources/data/twigs/recipes/tuff_stairs_from_tuff_stonecutting.json deleted file mode 100644 index 5c5ac01f..00000000 --- a/src/main/resources/data/twigs/recipes/tuff_stairs_from_tuff_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff" - }, - "result": "twigs:tuff_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/tuff_wall.json b/src/main/resources/data/twigs/recipes/tuff_wall.json deleted file mode 100644 index b1802913..00000000 --- a/src/main/resources/data/twigs/recipes/tuff_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "minecraft:tuff" - } - }, - "result": { - "item": "twigs:tuff_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/tuff_wall_from_tuff_stonecutting.json b/src/main/resources/data/twigs/recipes/tuff_wall_from_tuff_stonecutting.json deleted file mode 100644 index bc882973..00000000 --- a/src/main/resources/data/twigs/recipes/tuff_wall_from_tuff_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:tuff" - }, - "result": "twigs:tuff_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_slab.json b/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_slab.json deleted file mode 100644 index 5cc15a9b..00000000 --- a/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:twisting_polished_blackstone_bricks" - } - }, - "result": { - "item": "twigs:twisting_polished_blackstone_brick_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_slab_stonecutting.json b/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_slab_stonecutting.json deleted file mode 100644 index 8d3eb376..00000000 --- a/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:twisting_polished_blackstone_bricks" - }, - "result": "twigs:twisting_polished_blackstone_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_stairs.json b/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_stairs.json deleted file mode 100644 index e58470c0..00000000 --- a/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:twisting_polished_blackstone_bricks" - } - }, - "result": { - "item": "twigs:twisting_polished_blackstone_brick_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_stairs_stonecutting.json deleted file mode 100644 index e05f1d5e..00000000 --- a/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:twisting_polished_blackstone_bricks" - }, - "result": "twigs:twisting_polished_blackstone_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_wall.json b/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_wall.json deleted file mode 100644 index e06bdfe4..00000000 --- a/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:twisting_polished_blackstone_bricks" - } - }, - "result": { - "item": "twigs:twisting_polished_blackstone_brick_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_wall_stonecutting.json b/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_wall_stonecutting.json deleted file mode 100644 index 761a6ddf..00000000 --- a/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:twisting_polished_blackstone_bricks" - }, - "result": "twigs:twisting_polished_blackstone_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_bricks.json b/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_bricks.json deleted file mode 100644 index 912444da..00000000 --- a/src/main/resources/data/twigs/recipes/twisting_polished_blackstone_bricks.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "#T#", - "###" - ], - "key": { - "#": { - "item": "minecraft:polished_blackstone_bricks" - }, - "T": { - "item": "minecraft:twisting_vines" - } - }, - "result": { - "item": "twigs:twisting_polished_blackstone_bricks", - "count": 8 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/warped_shroomlamp.json b/src/main/resources/data/twigs/recipes/warped_shroomlamp.json deleted file mode 100644 index c1f6de2f..00000000 --- a/src/main/resources/data/twigs/recipes/warped_shroomlamp.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "SSS", - "###" - ], - "key": { - "#": { - "item": "minecraft:warped_planks" - }, - "S": { - "item": "minecraft:shroomlight" - } - }, - "result": { - "item": "twigs:warped_shroomlamp", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/warped_table.json b/src/main/resources/data/twigs/recipes/warped_table.json deleted file mode 100644 index 5d9049d7..00000000 --- a/src/main/resources/data/twigs/recipes/warped_table.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "___", - "O O", - "O O" - ], - "key": { - "_": { - "item": "minecraft:warped_slab" - }, - "O": { - "item": "minecraft:warped_fence" - } - }, - "result": { - "item": "twigs:warped_table", - "count": 1 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/waxed_copper_pillar.json b/src/main/resources/data/twigs/recipes/waxed_copper_pillar.json deleted file mode 100644 index 486ec46d..00000000 --- a/src/main/resources/data/twigs/recipes/waxed_copper_pillar.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "minecraft:waxed_cut_copper_slab" - } - }, - "pattern": [ - "#", - "#" - ], - "result": { - "item": "twigs:waxed_copper_pillar" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/waxed_copper_pillar_from_cut_copper_stonecutting.json b/src/main/resources/data/twigs/recipes/waxed_copper_pillar_from_cut_copper_stonecutting.json deleted file mode 100644 index 7f4f7fd7..00000000 --- a/src/main/resources/data/twigs/recipes/waxed_copper_pillar_from_cut_copper_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:waxed_cut_copper" - }, - "result": "twigs:waxed_copper_pillar", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/waxed_copper_pillar_stonecutting.json b/src/main/resources/data/twigs/recipes/waxed_copper_pillar_stonecutting.json deleted file mode 100644 index 0e9754f9..00000000 --- a/src/main/resources/data/twigs/recipes/waxed_copper_pillar_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:waxed_copper_block" - }, - "result": "twigs:waxed_copper_pillar", - "count": 4 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/waxed_exposed_copper_pillar.json b/src/main/resources/data/twigs/recipes/waxed_exposed_copper_pillar.json deleted file mode 100644 index 393a6804..00000000 --- a/src/main/resources/data/twigs/recipes/waxed_exposed_copper_pillar.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "minecraft:waxed_exposed_cut_copper_slab" - } - }, - "pattern": [ - "#", - "#" - ], - "result": { - "item": "twigs:waxed_exposed_copper_pillar" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/waxed_exposed_copper_pillar_from_cut_copper_stonecutting.json b/src/main/resources/data/twigs/recipes/waxed_exposed_copper_pillar_from_cut_copper_stonecutting.json deleted file mode 100644 index 0df740ad..00000000 --- a/src/main/resources/data/twigs/recipes/waxed_exposed_copper_pillar_from_cut_copper_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:waxed_exposed_cut_copper" - }, - "result": "twigs:waxed_exposed_copper_pillar", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/waxed_exposed_copper_pillar_stonecutting.json b/src/main/resources/data/twigs/recipes/waxed_exposed_copper_pillar_stonecutting.json deleted file mode 100644 index 9c441be6..00000000 --- a/src/main/resources/data/twigs/recipes/waxed_exposed_copper_pillar_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:waxed_exposed_copper" - }, - "result": "twigs:waxed_exposed_copper_pillar", - "count": 4 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/waxed_oxidized_copper_pillar.json b/src/main/resources/data/twigs/recipes/waxed_oxidized_copper_pillar.json deleted file mode 100644 index 548e1033..00000000 --- a/src/main/resources/data/twigs/recipes/waxed_oxidized_copper_pillar.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "minecraft:waxed_oxidized_cut_copper_slab" - } - }, - "pattern": [ - "#", - "#" - ], - "result": { - "item": "twigs:waxed_oxidized_copper_pillar" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/waxed_oxidized_copper_pillar_from_cut_copper_stonecutting.json b/src/main/resources/data/twigs/recipes/waxed_oxidized_copper_pillar_from_cut_copper_stonecutting.json deleted file mode 100644 index 21b2277b..00000000 --- a/src/main/resources/data/twigs/recipes/waxed_oxidized_copper_pillar_from_cut_copper_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:waxed_oxidized_cut_copper" - }, - "result": "twigs:waxed_oxidized_copper_pillar", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/waxed_oxidized_copper_pillar_stonecutting.json b/src/main/resources/data/twigs/recipes/waxed_oxidized_copper_pillar_stonecutting.json deleted file mode 100644 index 3d9f9df9..00000000 --- a/src/main/resources/data/twigs/recipes/waxed_oxidized_copper_pillar_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:waxed_oxidized_copper" - }, - "result": "twigs:waxed_oxidized_copper_pillar", - "count": 4 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/waxed_weathered_copper_pillar.json b/src/main/resources/data/twigs/recipes/waxed_weathered_copper_pillar.json deleted file mode 100644 index 08c65563..00000000 --- a/src/main/resources/data/twigs/recipes/waxed_weathered_copper_pillar.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "minecraft:waxed_weathered_cut_copper_slab" - } - }, - "pattern": [ - "#", - "#" - ], - "result": { - "item": "twigs:waxed_weathered_copper_pillar" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/waxed_weathered_copper_pillar_from_cut_copper_stonecutting.json b/src/main/resources/data/twigs/recipes/waxed_weathered_copper_pillar_from_cut_copper_stonecutting.json deleted file mode 100644 index 9922048d..00000000 --- a/src/main/resources/data/twigs/recipes/waxed_weathered_copper_pillar_from_cut_copper_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:waxed_weathered_cut_copper" - }, - "result": "twigs:waxed_weathered_copper_pillar", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/waxed_weathered_copper_pillar_stonecutting.json b/src/main/resources/data/twigs/recipes/waxed_weathered_copper_pillar_stonecutting.json deleted file mode 100644 index 7dc7041c..00000000 --- a/src/main/resources/data/twigs/recipes/waxed_weathered_copper_pillar_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:waxed_weathered_copper" - }, - "result": "twigs:waxed_weathered_copper_pillar", - "count": 4 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/weathered_copper_pillar.json b/src/main/resources/data/twigs/recipes/weathered_copper_pillar.json deleted file mode 100644 index 8a182513..00000000 --- a/src/main/resources/data/twigs/recipes/weathered_copper_pillar.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "minecraft:weathered_cut_copper_slab" - } - }, - "pattern": [ - "#", - "#" - ], - "result": { - "item": "twigs:weathered_copper_pillar" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/weathered_copper_pillar_from_cut_copper_stonecutting.json b/src/main/resources/data/twigs/recipes/weathered_copper_pillar_from_cut_copper_stonecutting.json deleted file mode 100644 index 2827b086..00000000 --- a/src/main/resources/data/twigs/recipes/weathered_copper_pillar_from_cut_copper_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:weathered_cut_copper" - }, - "result": "twigs:weathered_copper_pillar", - "count": 1 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/weathered_copper_pillar_stonecutting.json b/src/main/resources/data/twigs/recipes/weathered_copper_pillar_stonecutting.json deleted file mode 100644 index 92493c29..00000000 --- a/src/main/resources/data/twigs/recipes/weathered_copper_pillar_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "minecraft:weathered_copper" - }, - "result": "twigs:weathered_copper_pillar", - "count": 4 -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_slab.json b/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_slab.json deleted file mode 100644 index d0e177cc..00000000 --- a/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:weeping_polished_blackstone_bricks" - } - }, - "result": { - "item": "twigs:weeping_polished_blackstone_brick_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_slab_stonecutting.json b/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_slab_stonecutting.json deleted file mode 100644 index 1c3d493c..00000000 --- a/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_slab_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:weeping_polished_blackstone_bricks" - }, - "result": "twigs:weeping_polished_blackstone_brick_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_stairs.json b/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_stairs.json deleted file mode 100644 index 0d3eff2f..00000000 --- a/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:weeping_polished_blackstone_bricks" - } - }, - "result": { - "item": "twigs:weeping_polished_blackstone_brick_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_stairs_stonecutting.json b/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_stairs_stonecutting.json deleted file mode 100644 index 24550d45..00000000 --- a/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_stairs_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:weeping_polished_blackstone_bricks" - }, - "result": "twigs:weeping_polished_blackstone_brick_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_wall.json b/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_wall.json deleted file mode 100644 index 18ea8164..00000000 --- a/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:weeping_polished_blackstone_bricks" - } - }, - "result": { - "item": "twigs:weeping_polished_blackstone_brick_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_wall_stonecutting.json b/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_wall_stonecutting.json deleted file mode 100644 index 8d7ca3b5..00000000 --- a/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_brick_wall_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:weeping_polished_blackstone_bricks" - }, - "result": "twigs:weeping_polished_blackstone_brick_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_bricks.json b/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_bricks.json deleted file mode 100644 index b9dd753c..00000000 --- a/src/main/resources/data/twigs/recipes/weeping_polished_blackstone_bricks.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "#W#", - "###" - ], - "key": { - "#": { - "item": "minecraft:polished_blackstone_bricks" - }, - "W": { - "item": "minecraft:weeping_vines" - } - }, - "result": { - "item": "twigs:weeping_polished_blackstone_bricks", - "count": 8 - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/white_packed_silt.json b/src/main/resources/data/twigs/recipes/white_packed_silt.json deleted file mode 100644 index cf7b2521..00000000 --- a/src/main/resources/data/twigs/recipes/white_packed_silt.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:packed_silt" - }, - "X": { - "item": "minecraft:white_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:white_packed_silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/white_silt_pot.json b/src/main/resources/data/twigs/recipes/white_silt_pot.json deleted file mode 100644 index 61e6348d..00000000 --- a/src/main/resources/data/twigs/recipes/white_silt_pot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt_pot" - }, - { - "item": "minecraft:white_dye" - } - ], - "result": { - "item": "twigs:white_silt_pot" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/white_silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/white_silt_shingle_slab.json deleted file mode 100644 index 4097adcd..00000000 --- a/src/main/resources/data/twigs/recipes/white_silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:white_silt_shingles" - } - }, - "result": { - "item": "twigs:white_silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/white_silt_shingle_slab_from_white_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/white_silt_shingle_slab_from_white_packed_silt_stonecutting.json deleted file mode 100644 index 0ec33411..00000000 --- a/src/main/resources/data/twigs/recipes/white_silt_shingle_slab_from_white_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:white_packed_silt" - }, - "result": "twigs:white_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/white_silt_shingle_slab_from_white_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/white_silt_shingle_slab_from_white_silt_shingle_stonecutting.json deleted file mode 100644 index cb1b5d45..00000000 --- a/src/main/resources/data/twigs/recipes/white_silt_shingle_slab_from_white_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:white_silt_shingles" - }, - "result": "twigs:white_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/white_silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/white_silt_shingle_stairs.json deleted file mode 100644 index a1f95512..00000000 --- a/src/main/resources/data/twigs/recipes/white_silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:white_silt_shingles" - } - }, - "result": { - "item": "twigs:white_silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/white_silt_shingle_stairs_from_white_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/white_silt_shingle_stairs_from_white_packed_silt_stonecutting.json deleted file mode 100644 index 234eca39..00000000 --- a/src/main/resources/data/twigs/recipes/white_silt_shingle_stairs_from_white_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:white_packed_silt" - }, - "result": "twigs:white_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/white_silt_shingle_stairs_from_white_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/white_silt_shingle_stairs_from_white_silt_shingle_stonecutting.json deleted file mode 100644 index 58347913..00000000 --- a/src/main/resources/data/twigs/recipes/white_silt_shingle_stairs_from_white_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:white_silt_shingles" - }, - "result": "twigs:white_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/white_silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/white_silt_shingle_wall.json deleted file mode 100644 index e11f0e4f..00000000 --- a/src/main/resources/data/twigs/recipes/white_silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:white_silt_shingles" - } - }, - "result": { - "item": "twigs:white_silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/white_silt_shingle_wall_from_white_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/white_silt_shingle_wall_from_white_packed_silt_stonecutting.json deleted file mode 100644 index f4ccbaac..00000000 --- a/src/main/resources/data/twigs/recipes/white_silt_shingle_wall_from_white_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:white_packed_silt" - }, - "result": "twigs:white_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/white_silt_shingle_wall_from_white_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/white_silt_shingle_wall_from_white_silt_shingle_stonecutting.json deleted file mode 100644 index 06872374..00000000 --- a/src/main/resources/data/twigs/recipes/white_silt_shingle_wall_from_white_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:white_silt_shingles" - }, - "result": "twigs:white_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/white_silt_shingles.json b/src/main/resources/data/twigs/recipes/white_silt_shingles.json deleted file mode 100644 index 91e805ea..00000000 --- a/src/main/resources/data/twigs/recipes/white_silt_shingles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:silt_shingles" - }, - "X": { - "item": "minecraft:white_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:white_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/white_silt_shingles_from_packed_silt.json b/src/main/resources/data/twigs/recipes/white_silt_shingles_from_packed_silt.json deleted file mode 100644 index 63703ec2..00000000 --- a/src/main/resources/data/twigs/recipes/white_silt_shingles_from_packed_silt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:white_packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:white_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/white_silt_shingles_from_white_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/white_silt_shingles_from_white_packed_silt_stonecutting.json deleted file mode 100644 index c05dad16..00000000 --- a/src/main/resources/data/twigs/recipes/white_silt_shingles_from_white_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:white_packed_silt" - }, - "result": "twigs:white_silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/yellow_packed_silt.json b/src/main/resources/data/twigs/recipes/yellow_packed_silt.json deleted file mode 100644 index b3d86cab..00000000 --- a/src/main/resources/data/twigs/recipes/yellow_packed_silt.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:packed_silt" - }, - "X": { - "item": "minecraft:yellow_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:yellow_packed_silt" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/yellow_silt_pot.json b/src/main/resources/data/twigs/recipes/yellow_silt_pot.json deleted file mode 100644 index b648e10e..00000000 --- a/src/main/resources/data/twigs/recipes/yellow_silt_pot.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "twigs:silt_pot" - }, - { - "item": "minecraft:yellow_dye" - } - ], - "result": { - "item": "twigs:yellow_silt_pot" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_slab.json b/src/main/resources/data/twigs/recipes/yellow_silt_shingle_slab.json deleted file mode 100644 index dbc4e2f6..00000000 --- a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "twigs:yellow_silt_shingles" - } - }, - "result": { - "item": "twigs:yellow_silt_shingle_slab", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_slab_from_yellow_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/yellow_silt_shingle_slab_from_yellow_packed_silt_stonecutting.json deleted file mode 100644 index e783a2fd..00000000 --- a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_slab_from_yellow_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:yellow_packed_silt" - }, - "result": "twigs:yellow_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_slab_from_yellow_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/yellow_silt_shingle_slab_from_yellow_silt_shingle_stonecutting.json deleted file mode 100644 index 74b07ddc..00000000 --- a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_slab_from_yellow_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:yellow_silt_shingles" - }, - "result": "twigs:yellow_silt_shingle_slab", - "count": 2 -} diff --git a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_stairs.json b/src/main/resources/data/twigs/recipes/yellow_silt_shingle_stairs.json deleted file mode 100644 index 8324a12b..00000000 --- a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_stairs.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "# ", - "## ", - "###" - ], - "key": { - "#": { - "item": "twigs:yellow_silt_shingles" - } - }, - "result": { - "item": "twigs:yellow_silt_shingle_stairs", - "count": 4 - } -} diff --git a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_stairs_from_yellow_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/yellow_silt_shingle_stairs_from_yellow_packed_silt_stonecutting.json deleted file mode 100644 index 45e92f48..00000000 --- a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_stairs_from_yellow_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:yellow_packed_silt" - }, - "result": "twigs:yellow_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_stairs_from_yellow_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/yellow_silt_shingle_stairs_from_yellow_silt_shingle_stonecutting.json deleted file mode 100644 index ce5a7f5c..00000000 --- a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_stairs_from_yellow_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:yellow_silt_shingles" - }, - "result": "twigs:yellow_silt_shingle_stairs", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_wall.json b/src/main/resources/data/twigs/recipes/yellow_silt_shingle_wall.json deleted file mode 100644 index 6cd677de..00000000 --- a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "twigs:yellow_silt_shingles" - } - }, - "result": { - "item": "twigs:yellow_silt_shingle_wall", - "count": 6 - } -} diff --git a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_wall_from_yellow_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/yellow_silt_shingle_wall_from_yellow_packed_silt_stonecutting.json deleted file mode 100644 index 2ebd8e5b..00000000 --- a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_wall_from_yellow_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:yellow_packed_silt" - }, - "result": "twigs:yellow_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_wall_from_yellow_silt_shingle_stonecutting.json b/src/main/resources/data/twigs/recipes/yellow_silt_shingle_wall_from_yellow_silt_shingle_stonecutting.json deleted file mode 100644 index fa54bfd7..00000000 --- a/src/main/resources/data/twigs/recipes/yellow_silt_shingle_wall_from_yellow_silt_shingle_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:yellow_silt_shingles" - }, - "result": "twigs:yellow_silt_shingle_wall", - "count": 1 -} diff --git a/src/main/resources/data/twigs/recipes/yellow_silt_shingles.json b/src/main/resources/data/twigs/recipes/yellow_silt_shingles.json deleted file mode 100644 index f0812cfe..00000000 --- a/src/main/resources/data/twigs/recipes/yellow_silt_shingles.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "group": "stained_terracotta", - "key": { - "#": { - "item": "twigs:silt_shingles" - }, - "X": { - "item": "minecraft:yellow_dye" - } - }, - "pattern": [ - "###", - "#X#", - "###" - ], - "result": { - "count": 8, - "item": "twigs:yellow_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/yellow_silt_shingles_from_packed_silt.json b/src/main/resources/data/twigs/recipes/yellow_silt_shingles_from_packed_silt.json deleted file mode 100644 index 4290b465..00000000 --- a/src/main/resources/data/twigs/recipes/yellow_silt_shingles_from_packed_silt.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "key": { - "#": { - "item": "twigs:yellow_packed_silt" - } - }, - "pattern": [ - "##", - "##" - ], - "result": { - "count": 4, - "item": "twigs:yellow_silt_shingles" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/recipes/yellow_silt_shingles_from_yellow_packed_silt_stonecutting.json b/src/main/resources/data/twigs/recipes/yellow_silt_shingles_from_yellow_packed_silt_stonecutting.json deleted file mode 100644 index d645cf00..00000000 --- a/src/main/resources/data/twigs/recipes/yellow_silt_shingles_from_yellow_packed_silt_stonecutting.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "twigs:yellow_packed_silt" - }, - "result": "twigs:yellow_silt_shingles", - "count": 1 -} diff --git a/src/main/resources/data/twigs/structures/bloodstone_obelisk/bloodstone_obelisk.nbt b/src/main/resources/data/twigs/structure/bloodstone_obelisk/bloodstone_obelisk.nbt similarity index 100% rename from src/main/resources/data/twigs/structures/bloodstone_obelisk/bloodstone_obelisk.nbt rename to src/main/resources/data/twigs/structure/bloodstone_obelisk/bloodstone_obelisk.nbt diff --git a/src/main/resources/data/twigs/tags/blocks/offset_remover.json b/src/main/resources/data/twigs/tags/blocks/offset_remover.json deleted file mode 100644 index a5fe6878..00000000 --- a/src/main/resources/data/twigs/tags/blocks/offset_remover.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "values": [ - "#twigs:silt_pots" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/tags/blocks/packed_silt.json b/src/main/resources/data/twigs/tags/blocks/packed_silt.json deleted file mode 100644 index 4558665d..00000000 --- a/src/main/resources/data/twigs/tags/blocks/packed_silt.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:packed_silt", - "twigs:white_packed_silt", - "twigs:orange_packed_silt", - "twigs:magenta_packed_silt", - "twigs:light_blue_packed_silt", - "twigs:yellow_packed_silt", - "twigs:lime_packed_silt", - "twigs:pink_packed_silt", - "twigs:gray_packed_silt", - "twigs:light_gray_packed_silt", - "twigs:cyan_packed_silt", - "twigs:purple_packed_silt", - "twigs:blue_packed_silt", - "twigs:brown_packed_silt", - "twigs:green_packed_silt", - "twigs:red_packed_silt", - "twigs:black_packed_silt", - "twigs:silt_shingles", - "twigs:white_silt_shingles", - "twigs:orange_silt_shingles", - "twigs:magenta_silt_shingles", - "twigs:light_blue_silt_shingles", - "twigs:yellow_silt_shingles", - "twigs:lime_silt_shingles", - "twigs:pink_silt_shingles", - "twigs:gray_silt_shingles", - "twigs:light_gray_silt_shingles", - "twigs:cyan_silt_shingles", - "twigs:purple_silt_shingles", - "twigs:blue_silt_shingles", - "twigs:brown_silt_shingles", - "twigs:green_silt_shingles", - "twigs:red_silt_shingles", - "twigs:black_silt_shingles", - "twigs:silt_shingle_stairs", - "twigs:white_silt_shingle_stairs", - "twigs:orange_silt_shingle_stairs", - "twigs:magenta_silt_shingle_stairs", - "twigs:light_blue_silt_shingle_stairs", - "twigs:yellow_silt_shingle_stairs", - "twigs:lime_silt_shingle_stairs", - "twigs:pink_silt_shingle_stairs", - "twigs:gray_silt_shingle_stairs", - "twigs:light_gray_silt_shingle_stairs", - "twigs:cyan_silt_shingle_stairs", - "twigs:purple_silt_shingle_stairs", - "twigs:blue_silt_shingle_stairs", - "twigs:brown_silt_shingle_stairs", - "twigs:green_silt_shingle_stairs", - "twigs:red_silt_shingle_stairs", - "twigs:black_silt_shingle_stairs", - "twigs:silt_shingle_slab", - "twigs:white_silt_shingle_slab", - "twigs:orange_silt_shingle_slab", - "twigs:magenta_silt_shingle_slab", - "twigs:light_blue_silt_shingle_slab", - "twigs:yellow_silt_shingle_slab", - "twigs:lime_silt_shingle_slab", - "twigs:pink_silt_shingle_slab", - "twigs:gray_silt_shingle_slab", - "twigs:light_gray_silt_shingle_slab", - "twigs:cyan_silt_shingle_slab", - "twigs:purple_silt_shingle_slab", - "twigs:blue_silt_shingle_slab", - "twigs:brown_silt_shingle_slab", - "twigs:green_silt_shingle_slab", - "twigs:red_silt_shingle_slab", - "twigs:black_silt_shingle_slab", - "twigs:silt_shingle_wall", - "twigs:white_silt_shingle_wall", - "twigs:orange_silt_shingle_wall", - "twigs:magenta_silt_shingle_wall", - "twigs:light_blue_silt_shingle_wall", - "twigs:yellow_silt_shingle_wall", - "twigs:lime_silt_shingle_wall", - "twigs:pink_silt_shingle_wall", - "twigs:gray_silt_shingle_wall", - "twigs:light_gray_silt_shingle_wall", - "twigs:cyan_silt_shingle_wall", - "twigs:purple_silt_shingle_wall", - "twigs:blue_silt_shingle_wall", - "twigs:brown_silt_shingle_wall", - "twigs:green_silt_shingle_wall", - "twigs:red_silt_shingle_wall", - "twigs:black_silt_shingle_wall" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/tags/blocks/silt_pots.json b/src/main/resources/data/twigs/tags/blocks/silt_pots.json deleted file mode 100644 index 441e6c51..00000000 --- a/src/main/resources/data/twigs/tags/blocks/silt_pots.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:silt_pot", - "twigs:white_silt_pot", - "twigs:orange_silt_pot", - "twigs:magenta_silt_pot", - "twigs:light_blue_silt_pot", - "twigs:yellow_silt_pot", - "twigs:lime_silt_pot", - "twigs:pink_silt_pot", - "twigs:gray_silt_pot", - "twigs:light_gray_silt_pot", - "twigs:cyan_silt_pot", - "twigs:purple_silt_pot", - "twigs:blue_silt_pot", - "twigs:brown_silt_pot", - "twigs:green_silt_pot", - "twigs:red_silt_pot", - "twigs:black_silt_pot" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/tags/items/packed_silt.json b/src/main/resources/data/twigs/tags/items/packed_silt.json deleted file mode 100644 index 4558665d..00000000 --- a/src/main/resources/data/twigs/tags/items/packed_silt.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:packed_silt", - "twigs:white_packed_silt", - "twigs:orange_packed_silt", - "twigs:magenta_packed_silt", - "twigs:light_blue_packed_silt", - "twigs:yellow_packed_silt", - "twigs:lime_packed_silt", - "twigs:pink_packed_silt", - "twigs:gray_packed_silt", - "twigs:light_gray_packed_silt", - "twigs:cyan_packed_silt", - "twigs:purple_packed_silt", - "twigs:blue_packed_silt", - "twigs:brown_packed_silt", - "twigs:green_packed_silt", - "twigs:red_packed_silt", - "twigs:black_packed_silt", - "twigs:silt_shingles", - "twigs:white_silt_shingles", - "twigs:orange_silt_shingles", - "twigs:magenta_silt_shingles", - "twigs:light_blue_silt_shingles", - "twigs:yellow_silt_shingles", - "twigs:lime_silt_shingles", - "twigs:pink_silt_shingles", - "twigs:gray_silt_shingles", - "twigs:light_gray_silt_shingles", - "twigs:cyan_silt_shingles", - "twigs:purple_silt_shingles", - "twigs:blue_silt_shingles", - "twigs:brown_silt_shingles", - "twigs:green_silt_shingles", - "twigs:red_silt_shingles", - "twigs:black_silt_shingles", - "twigs:silt_shingle_stairs", - "twigs:white_silt_shingle_stairs", - "twigs:orange_silt_shingle_stairs", - "twigs:magenta_silt_shingle_stairs", - "twigs:light_blue_silt_shingle_stairs", - "twigs:yellow_silt_shingle_stairs", - "twigs:lime_silt_shingle_stairs", - "twigs:pink_silt_shingle_stairs", - "twigs:gray_silt_shingle_stairs", - "twigs:light_gray_silt_shingle_stairs", - "twigs:cyan_silt_shingle_stairs", - "twigs:purple_silt_shingle_stairs", - "twigs:blue_silt_shingle_stairs", - "twigs:brown_silt_shingle_stairs", - "twigs:green_silt_shingle_stairs", - "twigs:red_silt_shingle_stairs", - "twigs:black_silt_shingle_stairs", - "twigs:silt_shingle_slab", - "twigs:white_silt_shingle_slab", - "twigs:orange_silt_shingle_slab", - "twigs:magenta_silt_shingle_slab", - "twigs:light_blue_silt_shingle_slab", - "twigs:yellow_silt_shingle_slab", - "twigs:lime_silt_shingle_slab", - "twigs:pink_silt_shingle_slab", - "twigs:gray_silt_shingle_slab", - "twigs:light_gray_silt_shingle_slab", - "twigs:cyan_silt_shingle_slab", - "twigs:purple_silt_shingle_slab", - "twigs:blue_silt_shingle_slab", - "twigs:brown_silt_shingle_slab", - "twigs:green_silt_shingle_slab", - "twigs:red_silt_shingle_slab", - "twigs:black_silt_shingle_slab", - "twigs:silt_shingle_wall", - "twigs:white_silt_shingle_wall", - "twigs:orange_silt_shingle_wall", - "twigs:magenta_silt_shingle_wall", - "twigs:light_blue_silt_shingle_wall", - "twigs:yellow_silt_shingle_wall", - "twigs:lime_silt_shingle_wall", - "twigs:pink_silt_shingle_wall", - "twigs:gray_silt_shingle_wall", - "twigs:light_gray_silt_shingle_wall", - "twigs:cyan_silt_shingle_wall", - "twigs:purple_silt_shingle_wall", - "twigs:blue_silt_shingle_wall", - "twigs:brown_silt_shingle_wall", - "twigs:green_silt_shingle_wall", - "twigs:red_silt_shingle_wall", - "twigs:black_silt_shingle_wall" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/tags/items/silt_pots.json b/src/main/resources/data/twigs/tags/items/silt_pots.json deleted file mode 100644 index 441e6c51..00000000 --- a/src/main/resources/data/twigs/tags/items/silt_pots.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "replace": false, - "values": [ - "twigs:silt_pot", - "twigs:white_silt_pot", - "twigs:orange_silt_pot", - "twigs:magenta_silt_pot", - "twigs:light_blue_silt_pot", - "twigs:yellow_silt_pot", - "twigs:lime_silt_pot", - "twigs:pink_silt_pot", - "twigs:gray_silt_pot", - "twigs:light_gray_silt_pot", - "twigs:cyan_silt_pot", - "twigs:purple_silt_pot", - "twigs:blue_silt_pot", - "twigs:brown_silt_pot", - "twigs:green_silt_pot", - "twigs:red_silt_pot", - "twigs:black_silt_pot" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/tags/worldgen/biome/azalea_flowers_generate.json b/src/main/resources/data/twigs/tags/worldgen/biome/azalea_flowers_generate.json deleted file mode 100644 index 282a13ea..00000000 --- a/src/main/resources/data/twigs/tags/worldgen/biome/azalea_flowers_generate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:lush_caves" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/tags/worldgen/biome/has_structure/bloodstone_obelisk.json b/src/main/resources/data/twigs/tags/worldgen/biome/has_structure/bloodstone_obelisk.json deleted file mode 100644 index dfa35e0a..00000000 --- a/src/main/resources/data/twigs/tags/worldgen/biome/has_structure/bloodstone_obelisk.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:nether_wastes", - "minecraft:crimson_forest" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/tags/worldgen/biome/schist_generates.json b/src/main/resources/data/twigs/tags/worldgen/biome/schist_generates.json deleted file mode 100644 index 11dcece5..00000000 --- a/src/main/resources/data/twigs/tags/worldgen/biome/schist_generates.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "values": [ - "#c:mountain" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/worldgen/structure/bloodstone_obelisk.json b/src/main/resources/data/twigs/worldgen/structure/bloodstone_obelisk.json deleted file mode 100644 index 0ac846b9..00000000 --- a/src/main/resources/data/twigs/worldgen/structure/bloodstone_obelisk.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "twigs:obelisk", - "biomes": "#twigs:has_structure/bloodstone_obelisk", - "project_start_to_heightmap": "", - "size": 1, - "spawn_overrides": {}, - "terrain_adaptation": "beard_thin", - "start_height": { - "absolute": 33 - }, - "start_pool": "twigs:bloodstone_obelisk", - "step": "surface_structures", - "use_expansion_hack": false -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/worldgen/structure_set/bloodstone_obelisk.json b/src/main/resources/data/twigs/worldgen/structure_set/bloodstone_obelisk.json deleted file mode 100644 index bd02ecc7..00000000 --- a/src/main/resources/data/twigs/worldgen/structure_set/bloodstone_obelisk.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "structures": [ - { - "structure": "twigs:bloodstone_obelisk", - "weight": 1 - } - ], - "placement": { - "type": "minecraft:random_spread", - "spacing": 20, - "separation": 4, - "salt": 4206914, - "spread_type": "linear" - } -} \ No newline at end of file diff --git a/src/main/resources/data/twigs/worldgen/template_pool/bloodstone_obelisk.json b/src/main/resources/data/twigs/worldgen/template_pool/bloodstone_obelisk.json deleted file mode 100644 index 65e2861a..00000000 --- a/src/main/resources/data/twigs/worldgen/template_pool/bloodstone_obelisk.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "twigs:bloodstone_obelisk", - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "location": "twigs:bloodstone_obelisk", - "projection": "rigid", - "processors": "minecraft:empty" - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index ec427024..b4147ca5 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -42,10 +42,10 @@ "mixins": [ "twigs.mixins.json" ], "depends": { - "fabricloader": ">=0.14.21", + "fabricloader": ">=0.15.11", "fabric-api": "*", - "minecraft": "~1.20", - "java": ">=17" + "minecraft": "~1.21", + "java": ">=21" }, "suggests": { "another-mod": "*"